name property
String
get
name
Implementation
String get name => _getAttribute<String>(kName, '');
set
name
(String? x)
pass null
to remove key from attributes
Implementation
set name(String? x) =>
(x == null) ? _attributes.remove(kName) : _attributes[kName] = x;