flushAll method

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

Implementation

Future<RespType> flushAll({bool? doAsync}) async {
  return tier0.execute([
    'FLUSHALL',
    if (doAsync != null) doAsync ? 'ASYNC' : 'SYNC',
  ]);
}