SsmControls.fromJson constructor

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

Implementation

factory SsmControls.fromJson(Map<String, dynamic> json) {
  return SsmControls(
    concurrentExecutionRatePercentage:
        json['ConcurrentExecutionRatePercentage'] as int?,
    errorPercentage: json['ErrorPercentage'] as int?,
  );
}