remove method

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

Remove the cache value. 从缓存删除数据.

Implementation

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