orFillerIfNull method

String orFillerIfNull()

Implementation

String orFillerIfNull() {
  if (this?.isEmpty ?? true) {
    return '?????';
  }
  return this!;
}