or method
T
or(
- T fallback
Returns this value if it is truthy, otherwise returns fallback.
Example:
final name = userInput.or('Anonymous');
Implementation
T or(T fallback) {
return falsy(this, fallback);
}