equalsIgnoreCase method

bool equalsIgnoreCase(
  1. String anotherString
)

Implementation

bool equalsIgnoreCase(String anotherString){
  return anotherString.toLowerCase()==this.toLowerCase();
}