What is Equatable bloc?

In Bloc , we have to extend Equatable to States and Events classes to use this functionality . This helps us when it comes to stream as we need to decide state updation based on it. LoginState will not make duplicate calls and will not going to rebuild the widget if the same state occurs.10 Haz 2021

Read more

What is == in Dart?

Dart supports == for equality and identical (a, b) for identity. Dart no longer supports the === syntax. Use == for equality when you want to check if too objects are “equal”. You can implement the == method in your class to define what equality means.

Read more