Neonpen constructor

Neonpen({
  1. required Text text,
  2. required Color color,
  3. double? opacity,
  4. EdgeInsets? padding,
  5. bool? disableEmphasis,
  6. double? emphasisWidth,
  7. double? emphasisOpacity,
  8. double? emphasisAngleDegree,
  9. bool? enableLineZiggle,
  10. double? lineZiggleLevel,
  11. bool? isDoubleLayer,
})

Implementation

Neonpen({
  required this.text,
  required this.color,
  this.opacity,
  this.padding,
  this.disableEmphasis,
  this.emphasisWidth,
  this.emphasisOpacity,
  this.emphasisAngleDegree,
  this.enableLineZiggle,
  this.lineZiggleLevel,
  this.isDoubleLayer,
});