toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final delays = this.delays;
  final maxConcurrentLocations = this.maxConcurrentLocations;
  final maxConcurrentResourcesPerLocation =
      this.maxConcurrentResourcesPerLocation;
  return {
    'delays': ?delays,
    'maxConcurrentLocations': ?maxConcurrentLocations,
    'maxConcurrentResourcesPerLocation': ?maxConcurrentResourcesPerLocation,
  };
}