PathCommand.move constructor

PathCommand.move(
  1. Vec2D to
)

Implementation

factory PathCommand.move(Vec2D to) =>
    PathCommand(PathVerb.move, points: List.unmodifiable([to]));