applySimple static method
Applies a quick watermark with text at center position using default settings.
Implementation
static WatermarkResult applySimple(
Uint8List imageBytes, {
required int width,
required int height,
required String text,
double opacity = 0.3,
}) {
return apply(
imageBytes,
width: width,
height: height,
config: WatermarkConfig(text: text, opacity: opacity),
);
}