clientList method
Implementation
Future<RespType> clientList({ClientType? type, List<String> ids = const []}) async {
return tier0.execute([
'CLIENT',
'LIST',
if (type != null) ...['TYPE', type._value],
if (ids.isNotEmpty) ...['ID', ...ids],
]);
}