toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final disabled = this.disabled;
  final maxRetries = this.maxRetries;
  final schedule = this.schedule;
  final startTime = this.startTime;
  final type = this.type;
  return {
    'disabled': ?disabled,
    'maxRetries': ?maxRetries,
    'schedule': ?schedule,
    'startTime': ?startTime,
    'type': ?type,
  };
}