put method

  1. @MPI(name: "mesh.kv.put")
Future<void> put(
  1. String key,
  2. Body value, {
  3. Context? ctx,
})

Put the value to kv store.

Implementation

@MPI(name: "mesh.kv.put")
Future<void> put(String key, Body value, {Context? ctx}) {
  throw UnimplementedError('put() has not been implemented.');
}