or method

String or(
  1. String fill
)

Implementation

String or(String fill) {
  if (isEmpty) {
    return fill;
  }
  return this;
}