flushAll method

Future<void> flushAll({
  1. bool? doAsync,
})

flushAll

Implementation

Future<void> flushAll({bool? doAsync}) async {
  return await _runWithRetryNew(() async {
    (await RespCommandsTier1(_client!).flushAll()).toSimpleString();
    return null;
  });
}