StrokeOptions constructor

StrokeOptions({
  1. double size = 10,
  2. double thinning = 0.8,
  3. double smoothing = 0.4,
  4. double streamline = 0.4,
  5. double taperStart = 0.2,
  6. bool capStart = true,
  7. double taperEnd = 0.8,
  8. bool capEnd = true,
  9. bool simulatePressure = true,
  10. bool isComplete = false,
})

Implementation

StrokeOptions({
  this.size = 10,
  this.thinning = 0.8,
  this.smoothing = 0.4,
  this.streamline = 0.4,
  this.taperStart = 0.2,
  this.capStart = true,
  this.taperEnd = 0.8,
  this.capEnd = true,
  this.simulatePressure = true,
  this.isComplete = false,
});