FormFields.fromJson constructor

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

Implementation

FormFields.fromJson(Map<String, dynamic> json) {
  id = json["id"];
  formId = json["formId"];
  order = json["order"];
  label = json["label"];
  type = json["type"];
  isRequired = json["isRequired"];
}