flush method

  1. @override
Future<void> flush()
override

Flushes all values to the backend.

@throws StorageException if the storage backend encounters a problem

Implementation

@override
Future<void> flush() async {
  await _finishInit();
  await mapper.flush();
}