NERtcVideoWatermarkTextConfig constructor

NERtcVideoWatermarkTextConfig({
  1. double? wmAlpha = 1.0,
  2. int? wmWidth = 0,
  3. int? wmHeight = 0,
  4. int? offsetX = 0,
  5. int? offsetY = 0,
  6. String? fontNameOrPath = '',
  7. int? fontColor = 0xFFFFFFFF,
  8. int? fontSize = 15,
  9. int? wmColor = 0x88888888,
  10. required String? content,
})

Implementation

NERtcVideoWatermarkTextConfig(
    {this.wmAlpha = 1.0,
    this.wmWidth = 0,
    this.wmHeight = 0,
    this.offsetX = 0,
    this.offsetY = 0,
    this.fontNameOrPath = '',
    this.fontColor = 0xFFFFFFFF,
    this.fontSize = 15,
    this.wmColor = 0x88888888,
    required this.content});