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