flushAll method

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

Flushes all databases. Completes with no value, if the command was successful.

Implementation

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