exportLogs static method

Future<void> exportLogs({
  1. ExportType exportType = ExportType.ALL,
  2. bool decryptBeforeExporting = false,
})

Implementation

static Future<void> exportLogs(
    {ExportType exportType = ExportType.ALL,
    bool decryptBeforeExporting = false}) async {
  final String result =
      await channel.invokeMethod('exportLogs', <String, dynamic>{
    'exportType': _getExportType(exportType),
    'decryptBeforeExporting': decryptBeforeExporting
  });
  printDebugMessage(result, 2);
}