flushDb method

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

Flushes the currently selected database. Completes with no value, if the command was successful.

Implementation

Future<void> flushDb({bool? doAsync}) async {
  (await tier1.flushDb(doAsync: doAsync)).toSimpleString();
  return null;
}