Returns true if this String is empty or contains only whitespaces.
true
bool get isBlank => isEmpty || codeUnits.every((unit) => unit == _whitespace);