logsList method

Future<void> logsList(
  1. BuildContext context,
  2. Infospect infospect,
  3. InfospectNetworkCall call
)

network details list

Implementation

Future<void> logsList(BuildContext context, Infospect infospect,
        InfospectNetworkCall call) =>
    Navigator.push<void>(
      infospect.context ?? context,
      MaterialPageRoute(
        builder: (context) => BlocProvider(
          create: (context) => InterceptorDetailsBloc(),
          child: _themeWidget(
            InterceptorDetailsScreen(infospect, call),
          ),
        ),
      ),
    );