WatermarkConfig constructor

WatermarkConfig({
  1. required String text,
  2. int x = 0,
  3. int y = 0,
  4. int color = 0xFFFFFFFF,
  5. double textSize = 14.0,
  6. double opacity = 0.3,
  7. WatermarkAnimation? animation,
})

Implementation

WatermarkConfig({
  required this.text,
  this.x = 0,
  this.y = 0,
  this.color = 0xFFFFFFFF,
  this.textSize = 14.0,
  this.opacity = 0.3,
  this.animation,
});