operator == method

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

Compares two Offsets for equality.

Implementation

@override
bool operator ==(Object other) =>
    identical(this, other) ||
    super == other &&
        other is PinnedTranslate &&
        runtimeType == other.runtimeType &&
        _pinnedInfo == other._pinnedInfo;