infospectLaunchScreen method

Widget infospectLaunchScreen({
  1. required NetworksListNotifier networksListNotifier,
  2. required LogsListNotifier logsListNotifier,
})

get the launch screen widget

Implementation

Widget infospectLaunchScreen({
  required NetworksListNotifier networksListNotifier,
  required LogsListNotifier logsListNotifier,
}) {
  return InfospectLaunchScreen(
    this,
    networksListNotifier: networksListNotifier,
    logsListNotifier: logsListNotifier,
  );
}