bool isEqual(Object? a, Object? b) { if (a == null && b == null) return true; if (a == null) return false; return a == b; }