copyWith method

ClosedVectorPath copyWith({
  1. List<VectorPathCommand>? commands,
})

Implementation

ClosedVectorPath copyWith({List<VectorPathCommand>? commands}) =>
    ClosedVectorPath(commands: commands ?? this.commands);