equalsIgnoreCase static method

bool equalsIgnoreCase(
  1. String a,
  2. String b
)

Implementation

static bool equalsIgnoreCase(String a, String b) {
  return a.toLowerCase() == b.toLowerCase();
}