endsWith method

bool endsWith(
  1. String other
)
inherited

Whether the string ends with a pattern in the string without ANSI escape codes.

Implementation

bool endsWith(String other) => _requirePlainString.endsWith(other);