|
|
|
|
|
by spankalee
3639 days ago
|
|
There is room for both, but it should be explicit in my opinion. Dart for instance has null safe operators // not null-safe:
foo.bar.baz();
// null-safe:
foo?.bar?.baz();
If your type system also does null tracking, then you can see where you might have null values and decide to use the null-safe operators. |
|