givenName property

String givenName

Implementation

String get givenName => _getAttribute<String>(kGivenName, '');
void givenName=(String? x)

pass null to remove key from attributes

Implementation

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