EzplayerSubtitleStyle constructor

EzplayerSubtitleStyle({
  1. Color? backgroundColor,
  2. bool hasBorder = true,
  3. SubtitleBorderStyle? borderStyle,
  4. double fontSize = 14,
  5. Color textColor = Colors.blue,
  6. double? top,
  7. double bottom = 20,
  8. double left = 0.0,
  9. double right = 0.0,
  10. int time = 0,
})

Implementation

EzplayerSubtitleStyle({
  this.backgroundColor,
  this.hasBorder = true,
  this.borderStyle,
  this.fontSize = 14,
  this.textColor = Colors.blue,
  this.top,
  this.bottom = 20,
  this.left = 0.0,
  this.right = 0.0,
  this.time = 0,
});