firstName property

String firstName

Implementation

String get firstName => _getAttribute<String>(kFirstName, '');
void firstName=(String? x)

pass null to remove key from attributes

Implementation

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