static bool match(String? value1, String? value2){ return value1 != null && value2 != null && value1.toLowerCase() == value2.toLowerCase(); }