fullFlush method

Future<void> fullFlush()

Implementation

Future<void> fullFlush() async {
  while (_queue.isNotEmpty) {
    await flush();
  }
}