toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final description = this.description;
  final endTime = this.endTime;
  final name = this.name;
  final restoringServices = this.restoringServices;
  final serviceRevision = this.serviceRevision;
  final state = this.state;
  return {
    'createTime': ?createTime,
    'description': ?description,
    'endTime': ?endTime,
    'name': ?name,
    'restoringServices': ?restoringServices,
    'serviceRevision': ?serviceRevision,
    'state': ?state,
  };
}