After upgrading to 0.40.0 I started getting an awkward asterisk suffix sign after any type.
Example...
print(elementInstance.type.toString());
I used to get Stream<bool> now I'm getting Stream<bool*>*
Do I miss any analyzer settings or dart formatting?
Thanks in advance.
It says just that a variable could be either nullable or non nullable because such behaviour was before NNBD (Dart v.2.12) where you have to explicitly mark a variable with question mark if it is nullable
Check out this article https://dart.dev/null-safety