gender property

String gender

Implementation

String get gender => _getAttribute<String>(kGender, '');
void gender=(String? x)

pass null to remove key from attributes

Implementation

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