flush method
Forces sending of all pending logs.
Implementation
Future<void> flush() async {
if (_batch.isNotEmpty) {
await _sendBatch();
}
}
Forces sending of all pending logs.
Future<void> flush() async {
if (_batch.isNotEmpty) {
await _sendBatch();
}
}