birthdate property

String birthdate

Implementation

String get birthdate => _getAttribute<String>(kBirthdate, '');
void birthdate=(String? x)

pass null to remove key from attributes

Implementation

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