Bloc Testing
Read moreHow do you use flutter BLoC?
Code Implementation Let’s build a simple app to implement this Bloc pattern. We will create a simple counter app that has two buttons to increment and decrement a number. Start a new Flutter project by typing “flutter create [project_name]” in the console. Create BlocCounter class in counter_bloc.
Read more