removed hive imports
This commit is contained in:
@@ -1,6 +1,4 @@
|
|||||||
import 'package:hive/hive.dart';
|
class Bookmark {
|
||||||
|
|
||||||
class Bookmark extends HiveObject {
|
|
||||||
Bookmark({required this.name, required this.link});
|
Bookmark({required this.name, required this.link});
|
||||||
|
|
||||||
factory Bookmark.fromJson(Map<String, dynamic> json) =>
|
factory Bookmark.fromJson(Map<String, dynamic> json) =>
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
import 'package:hive/hive.dart';
|
class Collection {
|
||||||
|
|
||||||
class Collection extends HiveObject {
|
|
||||||
Collection({required this.name});
|
Collection({required this.name});
|
||||||
|
|
||||||
factory Collection.fromJson(Map<String, dynamic> json) =>
|
factory Collection.fromJson(Map<String, dynamic> json) =>
|
||||||
|
|||||||
Reference in New Issue
Block a user