notes property

String notes

Implementation

String get notes => _getAttribute<String>(kNotes, '');
void notes=(String? x)

pass null to remove key from attributes

Implementation

set notes(String? x) =>
    (x == null) ? _attributes.remove(kNotes) : _attributes[kNotes] = x;