HiveLocalAdapter<T extends DataModelMixin<T>> constructor

HiveLocalAdapter<T extends DataModelMixin<T>>(
  1. Ref<Object?> ref, {
  2. int? typeId,
})

Implementation

HiveLocalAdapter(Ref ref, {int? typeId})
    : _typeId = typeId,
      _hiveLocalStorage = ref.read(hiveLocalStorageProvider),
      super(ref);