getNoteString method
Restituisce la nota salvata o un messaggio predefinito se non รจ presente.
Implementation
String getNoteString() {
if (note == null || note!.isEmpty) {
return "Nessuna nota disponibile";
}
return note!;
}
Restituisce la nota salvata o un messaggio predefinito se non รจ presente.
String getNoteString() {
if (note == null || note!.isEmpty) {
return "Nessuna nota disponibile";
}
return note!;
}