ttl method

Future<RespType> ttl(
  1. String key
)

Implementation

Future<RespType> ttl(String key) async {
  return tier0.execute([
    'TTL',
    key,
  ]);
}