decrementBy method

Future<RedisReply> decrementBy(
  1. String key,
  2. int amount
)

DECRBY - Decrements an integer by amout

Implementation

Future<RedisReply> decrementBy(String key, int amount) async {
  return command('DECRBY', [key, '$amount']);
}