ClosedVectorPath constructor

const ClosedVectorPath({
  1. required List<VectorPathCommand> commands,
})

Represents a closed vector path. The path begins at the end point of the last command

Implementation

const ClosedVectorPath({
  required this.commands,
});