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