delete method

Future<void> delete(
  1. String name
)

Deletes a partition from a store or the store itself if a partition is stored individually

  • name: The cache name

Implementation

Future<void> delete(String name) {
  return _deletePartition(name);
}