store method

Future<void> store(
  1. String key,
  2. Uint8List value
)

Implementation

Future<void> store(String key, Uint8List value) async {
  try {
    await actor.getFunc(AssetMethod.store)?.call([key, value]);
  } catch (e) {
    rethrow;
  }
}