toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final canReschedule = this.canReschedule;
  final latestWindowStartTime = this.latestWindowStartTime;
  final maintenanceStatus = this.maintenanceStatus;
  final type = this.type;
  final windowEndTime = this.windowEndTime;
  final windowStartTime = this.windowStartTime;
  return {
    'canReschedule': ?canReschedule,
    'latestWindowStartTime': ?latestWindowStartTime,
    'maintenanceStatus': ?maintenanceStatus,
    'type': ?type,
    'windowEndTime': ?windowEndTime,
    'windowStartTime': ?windowStartTime,
  };
}