Reputation: 73
I am new to Bloc in flutter, any one can please explain when should I use add() and when to use emit in Blocs?
Upvotes: 5
Views: 5685
Reputation: 140
Use emit when you want a new state for your bloc.
Use add when you want your bloc to handle a new event.
See the Timer tutorial as an example.
Upvotes: 6
Reputation: 447
You should always use emit
, flutter bloc was upgrade to extends Cubit class and Cubit uses emit. Add
was old usage.
Upvotes: -3