Sketch constructor

const Sketch({
  1. required List<SketchLine> lines,
})

Represents a sketch with a list of SketchLines.

Implementation

const factory Sketch({
  required List<SketchLine> lines,
}) = _Sketch;