note property

String note

Implementation

String get note => _getAttribute<String>(kNote, '');
void note=(String? x)

pass null to remove key from attributes

Implementation

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