IsolatedHive top-level property
Global constant to access IsolatedHive
IsolatedHive delegates method calls to an isolate. This allows safe usage of Hive across multiple isolates.
Limitations:
- On web, IsolatedHive directly calls Hive since web does not support isolates
- IsolatedHive does not support HiveObject or HiveList
- Most methods are async due to isolate communication
Implementation
// ignore: non_constant_identifier_names
final IsolatedHiveInterface IsolatedHive = IsolatedHiveImpl();