clearLogs method

void clearLogs()

Implementation

void clearLogs() {
  AppAdaptiveDialog.show(
    context,
    tag: 'logs',
    title: 'Clear Logs?',
    body:
        'Are you sure you want to clear all logs? This will clear up the list.',
    onPositiveActionClick: logs.clearAllLogs,
  );
}