Returns this value if non-null, otherwise defaultValue.
defaultValue
Example:
bool? value; value.orDefault(); // false value.orDefault(true); // true
bool orDefault([bool defaultValue = false]) => this ?? defaultValue;