Watermark.text constructor
Watermark.text(})
Implementation
Watermark.text(
String text, {
TextStyle? style,
this.fit = BoxFit.contain,
this.angle = math.pi / 4,
}) : child = Text(
text,
style:
style ??
TextStyle(color: PdfColors.grey200, fontWeight: FontWeight.bold),
);