asOsStr method

  1. @override
CodeUnits asOsStr()
override

The code units of this component as they appear in the source path.

Implementation

@override
CodeUnits asOsStr() {
  if (isWide) {
    return WideCodeUnits(_singleWide(separatorByte));
  }
  return NarrowCodeUnits(_singleNarrow(separatorByte));
}