deleteStorageValue static method

Future<bool> deleteStorageValue(
  1. String key
)

Delete value from storage

Implementation

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