route static method

Route<void> route(
  1. WeatherCubit weatherCubit
)

Implementation

static Route<void> route(WeatherCubit weatherCubit){
  return MaterialPageRoute(
      builder: (_) => BlocProvider.value(
        value: weatherCubit,
        child: const SettingScreen(),
      )

  );
}