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