CubicToCommand constructor
Creates a new cubic Bezier command from the current point to x3,y3 using control points x1,y1 and x2,y2.
Implementation
const CubicToCommand(this.x1, this.y1, this.x2, this.y2, this.x3, this.y3)
: super._(PathCommandType.cubic);