personId property

String personId

Implementation

String get personId => _getAttribute<String>(kPersonId, '');
void personId=(String? x)

pass null to remove key from attributes

Implementation

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