endsWith method

bool endsWith(
  1. UnixPath other
)

Determines whether other is a suffix of this.

Implementation

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