getStorageValue static method

Future<String?> getStorageValue(
  1. String key
)

Get value from storage

Implementation

static Future<String?> getStorageValue(String key) async {
  return DartBridgeStorage.instance.get(key);
}