You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Concrete example: List<int?>(1); is safe, but List<int>(1) will most likely need to throw at runtime because [null] is not a List<int> with NNBD. List<int>.filled(1, 0); would be safe.
The text was updated successfully, but these errors were encountered:
Concrete example:
List<int?>(1);
is safe, butList<int>(1)
will most likely need to throw at runtime because[null]
is not aList<int>
with NNBD.List<int>.filled(1, 0);
would be safe.The text was updated successfully, but these errors were encountered: