equalsIgnoreCase method

bool equalsIgnoreCase(
  1. String? rhs
)

Compare two strings ignoring case. If rhs is null then returns false. Returns true, if both are the same, ignoring case.

Implementation

bool equalsIgnoreCase(String? rhs) => Strings.equalsIgnoreCase(this, rhs);