medicalNotes property

String medicalNotes

Implementation

String get medicalNotes => _getAttribute<String>(kMedicalNotes, '');
void medicalNotes=(String? x)

pass null to remove key from attributes

Implementation

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