JobExecutionsRolloutConfig.fromJson constructor
Implementation
factory JobExecutionsRolloutConfig.fromJson(Map<String, dynamic> json) {
return JobExecutionsRolloutConfig(
exponentialRate: json['exponentialRate'] != null
? ExponentialRolloutRate.fromJson(
json['exponentialRate'] as Map<String, dynamic>)
: null,
maximumPerMinute: json['maximumPerMinute'] as int?,
);
}