keys method

  1. @MPI(name: "mesh.cache.keys")
Future<List<String>?> keys(
  1. String pattern, {
  2. Context? ctx,
})

Keys the cache key set.

Implementation

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