问题 Trying to learn BLoCs I came up with this problem. I have some code in which I generate some buttons with BLoC pattern. However, I have no clue how to update specific buttons properties with dispatch(event) method. How to pass parameters to the event ChangeSomeValues ?? The part where the BLoC is used BlocBuilder( bloc: myBloc, builder: (context, state) { return ListView.builder( itemCount: state.buttonList.length, itemBuilder: (context, index) { return MyButton( label: buttonList[index]