SenzuWatermark constructor

const SenzuWatermark({
  1. String? userId,
  2. String? customText,
  3. double opacity = 0.18,
  4. double fontSize = 13.0,
  5. Color color = Colors.white,
  6. WatermarkPosition position = WatermarkPosition.random,
  7. Duration moveDuration = const Duration(seconds: 30),
  8. bool showTimestamp = true,
  9. bool showUserId = true,
})

Implementation

const SenzuWatermark({
  this.userId,
  this.customText,
  this.opacity = 0.18,
  this.fontSize = 13.0,
  this.color = Colors.white,
  this.position = WatermarkPosition.random,
  this.moveDuration = const Duration(seconds: 30),
  this.showTimestamp = true,
  this.showUserId = true,
});