Watermark constructor

Watermark(
  1. {required Widget child,
  2. BoxFit fit = BoxFit.contain,
  3. double angle = 0}
)

Implementation

Watermark({
  required this.child,
  this.fit = BoxFit.contain,
  this.angle = 0,
});