state property

String state

Implementation

String get state => _getAttribute<String>(kState, '');
void state=(String? x)

pass null to remove key from attributes

Implementation

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