Aashutosh Poudel
Aashutosh Poudel

Reputation: 73

When to use .add() and when to use emit() in Flutter Bloc?

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

Answers (2)

Mario Daglio
Mario Daglio

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

Hrvoje Čukman
Hrvoje Čukman

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

Related Questions