flush method

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

Flushes all pending telemetry data.

Should be called before shutting down application. Returns Future<void> to allow for async repository operations.

Implementation

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