factory Column.fromJson(Map<String, dynamic> json) { return Column( name: json['name'] as String, type: json['type'] as String, ); }