flushDb method
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;
}