compatibilityHashCode property

int compatibilityHashCode

hashCode that matches isCompatibleTo instead of ==.

Implementation

int get compatibilityHashCode => Object.hash(
      Object.hashAll(columns.map((e) => e.compatibilityHashCode)),
      Object.hashAll(nestedResults.map((e) => e.compatibilityHashCode)),
    );