watch method

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

watch

Implementation

Future<void> watch(List<String> keys) async {
  (await RespCommandsTier1(_client!).watch(keys)).toSimpleString().payload;
  return null;
}