status property

String? status

Allows you to set any string to the status.

Implementation

String? get status => _status;
void status=(String? val)

Implementation

set status(String? val) {
  _status = val;
  _set({"status": val});
}