hasDifferences property

bool hasDifferences

Whether or not expectedColumn and actualColumn are different.

Implementation

bool get hasDifferences =>
    _differingProperties.isNotEmpty ||
    (expectedColumn == null && actualColumn != null) ||
    (actualColumn == null && expectedColumn != null);