notes property

List<String> notes

Implementation

List<String> get notes => _notes;
void notes=(List<String> value)

Implementation

set notes(List<String> value) {
  _notes = value;
  notifyListeners();
}