admin property

String admin

Implementation

String get admin => _getAttribute<String>(kAdmin, '');
void admin=(String? x)

pass null to remove key from attributes

Implementation

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