operator == method
Two rows are equal if they contain the same pairs in the same order.
Implementation
@override
bool operator ==(Object other) {
if (other is! ExpandedRow) {
return false;
}
return Utils.arrayEquals(_pairs, other._pairs);
}