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