TextCaption constructor
const
TextCaption({
- required int number,
- required Duration start,
- required Duration end,
- required String text,
- List<
SubtitleAttribute?> ? subtitleAttributes, - TextStyle? textStyle,
- TextOriginAndExtent? textOriginAndExtent,
- AlignmentGeometry? textAlign,
- Color? windowBgColor,
- double? fontSize,
- Paint? fontForeground,
Creates a new TextCaption object.
Implementation
const TextCaption(
{required super.number,
required super.start,
required super.end,
required this.text,
this.subtitleAttributes,
this.textStyle,
this.textOriginAndExtent,
this.textAlign,
this.windowBgColor,
this.fontSize,
this.fontForeground});