merge method
Implementation
TransitionOptions merge(TransitionOptions? other) {
if (other == null) return this;
return copyWith.$merge(other);
}
TransitionOptions merge(TransitionOptions? other) {
if (other == null) return this;
return copyWith.$merge(other);
}