del method

Future<int> del(
  1. List<String> keys
)

Removes the value for the given keys. Returns the number of deleted values.

Implementation

Future<int> del(List<String> keys) async {
  return (await tier1.del(keys)).toInteger().payload;
}