Overrides equality operator to compare events by value.
@override bool operator ==(Object other) { if (identical(this, other)) return true; return other is RouteChangedEventModel && other.value == value; }