TextTrackStyle constructor

TextTrackStyle({
  1. Color? backgroundColor,
  2. Map<String, dynamic>? customData,
  3. Color? edgeColor,
  4. TextTrackStyle? edgeType,
  5. String? fontFamily,
  6. TextTrackFontGenericFamily? fontGenericFamily,
  7. int? fontScale,
  8. TextTrackFontStyle? fontStyle,
  9. Color? foregroundColor,
  10. Color? windowColor,
  11. double? windowRoundedCornerRadius,
  12. TextTrackWindowType? windowType,
})

Implementation

TextTrackStyle({
  this.backgroundColor,
  this.customData,
  this.edgeColor,
  this.edgeType,
  this.fontFamily,
  this.fontGenericFamily,
  this.fontScale,
  this.fontStyle,
  this.foregroundColor,
  this.windowColor,
  this.windowRoundedCornerRadius,
  this.windowType,
});