toJson method

Map<String, dynamic> toJson()

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,
  };
}