MoveTo
class MoveTo(values: List<String>, isRelative: Boolean, minified: Boolean) : PathNodes, CoordinatePoint(source)
The MoveTo represents the SVG/AVG command to move the pen to a new location.
It's a type of PathNodes which holds SVG/AVG command parameters.
The new location is determined using the specified x and y coordinates. The unit of these coordinates is determined based on the isRelative value. If isRelative is true, the x and y are treated as relative coordinates otherwise they are treated as absolute coordinates.
The class contains an overridden materialize function which returns a String representation of the SVG/AVG command in the form required by the Compose path functions.