11 lines
234 B
Dart
11 lines
234 B
Dart
class Collection {
|
|
Collection({required this.name});
|
|
|
|
factory Collection.fromJson(Map<String, dynamic> json) =>
|
|
Collection(name: json['name'] as String);
|
|
|
|
String name;
|
|
|
|
Map<String, dynamic> toJson() => {'name': name};
|
|
}
|