SubtitleStyle constructor

const SubtitleStyle({
  1. double fontSize = _defaultFontSize,
  2. Color textColor = Colors.yellow,
})

Implementation

const SubtitleStyle({
  this.fontSize = _defaultFontSize,
  this.textColor = Colors.yellow,
});