operator == method

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

Equality overrides

Implementation

@override
bool operator ==(other) {
  return (other is IronSourceAdInfo) &&
      other.auctionId == auctionId &&
      other.adUnit == adUnit &&
      other.adNetwork == adNetwork &&
      other.instanceName == instanceName &&
      other.instanceId == instanceId &&
      other.country == country &&
      other.revenue == revenue &&
      other.precision == precision &&
      other.ab == ab &&
      other.segmentName == segmentName &&
      other.encryptedCPM == encryptedCPM;
}