status property

String status

Implementation

String get status => _getAttribute<String>(kStatus, '');
void status=(String? x)

pass null to remove key from attributes

Implementation

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