ifBlank method

String ifBlank(
  1. String other
)

Implementation

String ifBlank(String other) {
  return this.isNullOrBlank ? other : this!;
}