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 _getInteger(await _execCmd(['DEL', ...keys]));
}