MoveToCommand constructor

const MoveToCommand(
  1. double x,
  2. double y
)

Creates a new command that moves the current point to x,y without drawing.

Implementation

const MoveToCommand(this.x, this.y) : super._(PathCommandType.move);