put method

  1. @MPI(name: "mesh.cache.put")
Future<void> put(
  1. CacheBody cell, {
  2. Context? ctx,
})

Put the value to cache.

Implementation

@MPI(name: "mesh.cache.put")
Future<void> put(CacheBody cell, {Context? ctx}) {
  throw UnimplementedError('put() has not been implemented.');
}