logsList method
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),
),
),
),
);