skip to Main Content

how can i get length of list in widget – Flutter

I can't get the length of the list in the widget although I wrote everything correct this is my cubit class AppCubit extends Cubit<NewsStates> { AppCubit() : super(NewsInit()); static AppCubit get(context) => BlocProvider.of(context); MianTeams? mianTeams; void getTimes() { emit(NewsLoding()); DioHelper.getData(…

VIEW QUESTION
Back To Top
Search