setStorageValue static method

Future<bool> setStorageValue(
  1. String key,
  2. String value
)

Set value in storage

Implementation

static Future<bool> setStorageValue(String key, String value) async {
  return DartBridgeStorage.instance.set(key, value);
}