decrement method

Future<RedisReply> decrement(
  1. String key
)

DECR - Decrements the key

Implementation

Future<RedisReply> decrement(String key) async {
  return command('DECR', [key]);
}