RemediationParameterValue.fromJson constructor
Implementation
factory RemediationParameterValue.fromJson(Map<String, dynamic> json) {
return RemediationParameterValue(
resourceValue: json['ResourceValue'] != null
? ResourceValue.fromJson(
json['ResourceValue'] as Map<String, dynamic>)
: null,
staticValue: json['StaticValue'] != null
? StaticValue.fromJson(json['StaticValue'] as Map<String, dynamic>)
: null,
);
}