nickname property

String nickname

Implementation

String get nickname => _getAttribute<String>(kNickname, '');
void nickname=(String? x)

pass null to remove key from attributes

Implementation

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