FieldGroup.fromJson constructor

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

Implementation

factory FieldGroup.fromJson(Map<String, dynamic> json) => FieldGroup(
  groupId: json["groupId"],
  title: json["title"],
  description: json["description"],
  fieldNames: List<String>.from(json["fieldNames"]),
  layout: json["layout"],
  columns: json["columns"],
);