storeExists method

  1. @override
Future<bool> storeExists(
  1. String storeName
)
override

Implementation

@override
Future<bool> storeExists(String storeName) async {
  return Hive.boxExists(storeName);
}