import 'package:hive/hive.dart'; class Collection extends HiveObject { Collection({required this.name}); factory Collection.fromJson(Map json) => Collection(name: json['name'] as String); String name; Map toJson() => {'name': name}; }