'The argument type 'Null' can't be assigned to the parameter type "" in Flutter
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 |

