name property

String name

Implementation

String get name => _getAttribute<String>(kName, '');
void name=(String? x)

pass null to remove key from attributes

Implementation

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