equalsIgnoreCase method

bool equalsIgnoreCase(
  1. String? other
)

Implementation

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