GroupControl.fromJson constructor
Implementation
factory GroupControl.fromJson(Map<String, dynamic> map) {
List<List<Control>> lsRow = [];
map['group']?.forEach((row) {
// printDebug(row);
List<Control> lsControl = [];
row.forEach((column) {
Control control = Control.fromMap(column);
lsControl.add(control);
});
lsRow.add(lsControl);
});
return GroupControl(row: lsRow);
}