getNoteString method

String getNoteString()

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!;
}