WatermarkPainter constructor

WatermarkPainter({
  1. required String text,
  2. required WatermarkStyle style,
})

Creates a watermark painter with the given text and style.

Implementation

WatermarkPainter({
  required this.text,
  required this.style,
});