kind property

String kind

Implementation

String get kind => _getAttribute<String>(kKind, '');
void kind=(String? x)

pass null to remove key from attributes

Implementation

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