static bool eqSet(Set? value1, Set? value2) { if (value1 == null && value2 == null) return true; return value1!.eq(value2!); }