equalsIgnoreCase method

bool equalsIgnoreCase(
  1. String other
)

Safe compare ignoring case

Implementation

bool equalsIgnoreCase(String other) => toLowerCase() == other.toLowerCase();