operator == method
Checks if this object is equal to other.
Implementation
@override
bool operator ==(Object other) {
if (identical(this, other)) return true;
return other is TrackData &&
other.track1 == track1 &&
other.track2 == track2 &&
other.track3 == track3;
}