JobExecutionsRolloutConfig.fromJson constructor

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

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