toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final customStatus = this.customStatus;
final doNotDisturbMetadata = this.doNotDisturbMetadata;
final name = this.name;
final state = this.state;
return {
'customStatus': ?customStatus,
'doNotDisturbMetadata': ?doNotDisturbMetadata,
'name': ?name,
'state': ?state,
};
}