Stream<void> watchChanges({required String key}) async* { if (_box == null || !_box!.isOpen) { dev.log("Hive box was not initialized!"); return; } yield* _box!.watch(key: key); }