DataSetSchema.fromJson constructor

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

Implementation

factory DataSetSchema.fromJson(Map<String, dynamic> json) {
  return DataSetSchema(
    columnSchemaList: (json['ColumnSchemaList'] as List?)
        ?.whereNotNull()
        .map((e) => ColumnSchema.fromJson(e as Map<String, dynamic>))
        .toList(),
  );
}