NiceViewValidation.fromJson constructor

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

Implementation

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