class Collection { Collection({required this.name}); factory Collection.fromJson(Map json) => Collection(name: json['name'] as String); String name; Map toJson() => {'name': name}; }