Design constructor

Design({
  1. String? bgColor,
  2. num? bgOpacity,
  3. String? toolTipPosition,
  4. String? toolTipArrow,
  5. String? spotlightPosition,
  6. String? spotlightArrow,
  7. num? spotlightX,
  8. num? spotlightY,
  9. dynamic arrowImageId,
  10. String? coachColor,
  11. String? coachmarkPosition,
  12. num? coachRadius,
  13. String? pipPosition,
  14. bool? hasBorder,
  15. String? borderColor,
  16. num? borderWidth,
  17. bool? hasAdvancedOptions,
  18. num? roundness,
  19. Margin? padding,
  20. Margin? margin,
  21. bool? showCloseButton,
  22. dynamic closeButtonColor,
  23. bool? bgOverlay,
  24. String? overlayColor,
  25. num? overlayOpacity,
  26. String? id,
})

Implementation

Design({
  this.bgColor,
  this.bgOpacity,
  this.toolTipPosition,
  this.toolTipArrow,
  this.spotlightPosition,
  this.spotlightArrow,
  this.spotlightX,
  this.spotlightY,
  this.arrowImageId,
  this.coachColor,
  this.coachmarkPosition,
  this.coachRadius,
  this.pipPosition,
  this.hasBorder,
  this.borderColor,
  this.borderWidth,
  this.hasAdvancedOptions,
  this.roundness,
  this.padding,
  this.margin,
  this.showCloseButton,
  this.closeButtonColor,
  this.bgOverlay,
  this.overlayColor,
  this.overlayOpacity,
  this.id,
});