ifBlank method

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

Implementation

String? ifBlank(String? Function() defaultValue) =>
    isBlank ? defaultValue() : this;