watch method

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

Implementation

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