Implementing BLoC Events

Learn how to create events classes using the flutter_bloc library

We'll cover the following...

The events are used to trigger state changes in the likes_bloc. They are emitted by elements in the widget tree.

Overview of the likes events
Overview of the likes events

The LikesEvents class

The LikesEvents class is an abstract class that every other event related to likes will extend.

abstract class LikesEvents {}
...