ColumnGroupSchema.fromJson constructor
Implementation
factory ColumnGroupSchema.fromJson(Map<String, dynamic> json) {
return ColumnGroupSchema(
columnGroupColumnSchemaList:
(json['ColumnGroupColumnSchemaList'] as List?)
?.whereNotNull()
.map((e) =>
ColumnGroupColumnSchema.fromJson(e as Map<String, dynamic>))
.toList(),
name: json['Name'] as String?,
);
}