endsWithIgnoreCase method

bool endsWithIgnoreCase(
  1. String value
)

Implementation

bool endsWithIgnoreCase(String value) {
  if (this == null) return false;
  return this!.toLowerCase().endsWith(value.toLowerCase());
}