operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

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);
}