ifBlank method

String? ifBlank([
  1. String? defaultValue
])

Implementation

String? ifBlank([String? defaultValue]) {
  return isBlank ? defaultValue : this;
}