bool equalsIgnoreCase(String? val) { if (val == null) { return false; } return this.toLowerCase() == val; }