TextWatermarkOptions constructor

TextWatermarkOptions({
  1. required String text,
  2. String textColor = '#FF0000',
  3. int fontSize = 48,
  4. String fontFamily = 'Arial',
  5. WatermarkPosition position = WatermarkPosition.center,
  6. PageRange pages = const PageRange.allPages(),
  7. int opacity = 30,
  8. int rotation = 45,
  9. int? customX,
  10. int? customY,
})

Constructor

Implementation

TextWatermarkOptions({
  required this.text,
  this.textColor = '#FF0000',
  this.fontSize = 48,
  this.fontFamily = 'Arial',
  super.position,
  super.pages,
  super.opacity,
  super.rotation,
  super.customX,
  super.customY,
});