FieldValidationMessage.fromJson constructor

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

Implementation

factory FieldValidationMessage.fromJson(Map<String, dynamic> json) {
  return FieldValidationMessage(
    content: json['content'] as String?,
    fieldName: json['fieldName'] as String?,
    identifier: json['identifier'] as String?,
    title: json['title'] as String?,
    type: json['type'] as String?,
  );
}