'The argument type 'Null' can't be assigned to the parameter type "" in Flutter

How can I fix the null value error. i'm using the bloc pattern. Please check the below image. Thanks in Advance.

enter image description here



Solution 1:[1]

Defining the state of your Bloc as nullable should fix your issue:

StateTime? instead of StateTime

class BlocTime extends Bloc<EventTime, StateTime?> {}

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Thierry