startsWith method

bool startsWith(
  1. UnixPath other
)

Determines whether other is a prefix of this.

Implementation

bool startsWith(UnixPath other) => _string.startsWith(other._string);