InvalidParameterValueException.fromJson constructor
Implementation
factory InvalidParameterValueException.fromJson(Map<String, dynamic> json) {
return InvalidParameterValueException(
type: json['Type'] as String?,
message: json['message'] as String?,
);
}