merge method
Merges this operation with other, returning a new operation.
Implementation
@override
PolylineOp merge(Op<InteractivePolyline> next) {
if (next is MovePolylineOp) {
return MovePolylineOp(key: key, from: from, to: next.to);
}
return this;
}