archiveLogs method

Future<void> archiveLogs({
  1. required Function completion,
})

Performs archiving of local log entries and returns a link to the created archive via completion block with status

Implementation

Future<void> archiveLogs({required Function completion}) async {
  _archiveLogsCallback = completion;
  await _channel.invokeMethod<void>('debugging:archiveLogs');
}