FieldGroup.fromJson constructor
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"],
);