get method

  1. @MPI(name: "mesh.cache.get")
Future<CacheBody?> get(
  1. String key, {
  2. Context? ctx,
})

Get the value from cache.

Implementation

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