ensureStoragePathExists static method
Ensure storage folder exists
Implementation
static Future<void> ensureStoragePathExists() async {
  final dir = Directory(_hiveDataPath);
  if (!await dir.exists()) {
    await dir.create(recursive: true);
  }
}Ensure storage folder exists
static Future<void> ensureStoragePathExists() async {
  final dir = Directory(_hiveDataPath);
  if (!await dir.exists()) {
    await dir.create(recursive: true);
  }
}