deleteByKey method

Future<bool> deleteByKey(
  1. String key
)

Implementation

Future<bool> deleteByKey(String key) {
  return deleteByIndex(r'key', [key]);
}