Returns true if the timezone of other is the same as this timezone.
true
other
@override bool equivalentTo(Data other) => (other is Timezone) ? timezone == other.timezone : false;