ConformancePackInputParameter.fromJson constructor

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

Implementation

factory ConformancePackInputParameter.fromJson(Map<String, dynamic> json) {
  return ConformancePackInputParameter(
    parameterName: json['ParameterName'] as String,
    parameterValue: json['ParameterValue'] as String,
  );
}