equalsIgnoreCase method

bool equalsIgnoreCase(
  1. String v
)

Determines if a string is equal to another ignoring case.

Implementation

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