Dart Null's
Null's in Dart
What is NULL?
Null
is a universal non value indicator that a specific variable does not hold something.
Up to version 2.12, you could assign anything to be null.
Before 2.12 The type of errors that come from using nulls, is that if you try to use to get for example the length of the string while it’s null will cause problems.