BasicLineShape constructor

BasicLineShape({
  1. bool smooth = false,
  2. bool loop = false,
  3. List<double>? dash,
})

Creates a basic line shape.

Implementation

BasicLineShape({
  this.smooth = false,
  this.loop = false,
  this.dash,
});