storageKeyExists static method

Future<bool> storageKeyExists(
  1. String key
)

Check if key exists in storage

Implementation

static Future<bool> storageKeyExists(String key) async {
  return DartBridgeStorage.instance.exists(key);
}