whereNullOrEmpty method

String? whereNullOrEmpty(
  1. String? defaultValue
)

Implementation

String? whereNullOrEmpty(String? defaultValue) => isNullOrEmpty() == false ? this : defaultValue;