flushDb method

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

flushDb

Implementation

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