IoTJobExecutionsRolloutConfig.fromJson constructor

IoTJobExecutionsRolloutConfig.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}