diff --git a/hive/lib/src/object/hive_object.dart b/hive/lib/src/object/hive_object.dart index 7fcaa0281..a179652f2 100644 --- a/hive/lib/src/object/hive_object.dart +++ b/hive/lib/src/object/hive_object.dart @@ -13,6 +13,15 @@ mixin HiveObjectMixin { dynamic _key; + void set setKey(dynamic key){ + print("BoxBase"); + this._key=key; + } + set setBox(BoxBase box){ + print("BoxBase"); + this._box=box; + } + // HiveLists containing this object final _hiveLists = {};