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