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