revert method
Reverts this operation from the current list.
Modifies current in place and returns the operation itself (or reversed op).
Implementation
@override
PolylineOp revert(List<InteractivePolyline> list) {
list.removeWhere((p) => p.key == polyline.key);
return this;
}