displayTitle property

String get displayTitle

Returns a formatted display string for the place. Now returns the full note without truncation.

Implementation

String get displayTitle {
  return note.isNotEmpty ? note : '(No title)';
}