Returns an empty String if null.
Example:
String? text = null; print(text.defaultBlank()); // ""
String defaultBlank() => isEmptyOrNull ? '' : this!;