orElse method

String orElse(
  1. String other
)

Implementation

String orElse(String other) {
  return this ?? other;
}