DrawPath constructor
DrawPath({
- List<
OperationStep> ? steps, - PathFillType? type,
- Path? path,
Implementation
DrawPath({
List<OperationStep>? steps,
PathFillType? type,
Path? path,
}) : path = path ?? Path(),
steps = steps ?? <OperationStep>[] {
if (type != null) {
this.path.fillType = type;
}
}