store method

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

Implementation

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