notEqualsIgnoreCase method

bool notEqualsIgnoreCase(
  1. String other
)

Case-insensitive in-equality check.

Implementation

bool notEqualsIgnoreCase(String other) => toLowerCase() != other.toLowerCase();