VectorImagePathDefinition constructor
VectorImagePathDefinition({
- required String path,
- DrawingParameters? drawingParameters,
path (string) REQUIRED : path definition ('d' attribute) drawingParameters (DrawingParameters) : drawing parameters for this Circle
Implementation
VectorImagePathDefinition({
required String path,
DrawingParameters? drawingParameters,
}) : pathElements = parsePath(path),
super(drawingParameters);