equalsIgnoreCase method

bool equalsIgnoreCase(
  1. String? other
)

Implementation

bool equalsIgnoreCase(String? other) =>
    (other == null) || (this!.toLowerCase() == other.toLowerCase());