clearNetwork method

void clearNetwork()

Implementation

void clearNetwork() {
  AppAdaptiveDialog.show(
    context,
    tag: 'network_calls',
    title: 'Clear Network Call Logs?',
    body:
        'Are you sure you want to clear all network call logs? This will clear up the list.',
    onPositiveActionClick: networks.clearNetworkLogs,
  );
}