endsWith method

bool endsWith(
  1. WindowsPath other
)

Determines whether other is a suffix of this.

Implementation

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