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