sadd method
------------------------------ Set ------------------------------ sadd
Implementation
/// sadd
Future<int> sadd(String key, List<Object> values) async {
Object result = await _runWithRetryNew(() async {
return (await RespCommandsTier1(_client!).sadd(key, values));
});
if (result is RespType2<dynamic>) {
return result.toInteger().payload;
}
return (result as RespType3<dynamic>).toInteger().payload;
}