flush method
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();
}
Flushes all pending telemetry data.
Should be called before shutting down application. Returns Future<void> to allow for async repository operations.
@override
Future<void> flush() async {
await _repository.flush();
}