del method

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

Implementation

Future<RespType> del(List<String> keys) async {
  return tier0.execute([
    'DEL',
    ...keys,
  ]);
}