equals method

  1. @override
bool equals(
  1. Channel self,
  2. Channel other
)

Implementation

@override bool equals(p4.Channel self, p4.Channel other) => Mapper.isEqual(self.channelId, other.channelId) && Mapper.isEqual(self.name, other.name) && Mapper.isEqual(self.description, other.description) && Mapper.isEqual(self.location, other.location) && Mapper.isEqual(self.channelType, other.channelType) && Mapper.isEqual(self.transmitterId, other.transmitterId) && Mapper.isEqual(self.favourite, other.favourite) && Mapper.isEqual(self.online, other.online) && Mapper.isEqual(self.video1, other.video1) && Mapper.isEqual(self.video1Head, other.video1Head) && Mapper.isEqual(self.video2, other.video2) && Mapper.isEqual(self.video2Head, other.video2Head) && Mapper.isEqual(self.audio, other.audio) && Mapper.isEqual(self.usb, other.usb) && Mapper.isEqual(self.usb1, other.usb1) && Mapper.isEqual(self.serial, other.serial) && Mapper.isEqual(self.audio1, other.audio1) && Mapper.isEqual(self.audio2, other.audio2) && Mapper.isEqual(self.sensitive, other.sensitive) && Mapper.isEqual(self.viewButton, other.viewButton) && Mapper.isEqual(self.sharedButton, other.sharedButton) && Mapper.isEqual(self.controlButton, other.controlButton) && Mapper.isEqual(self.exclusiveButton, other.exclusiveButton);