SpeedControlTile constructor

const SpeedControlTile({
  1. Key? key,
  2. required VideoPlayerState state,
  3. String title = 'Speed -',
  4. required PlayerTheme theme,
})

Implementation

const SpeedControlTile({
  super.key,
  required this.state,
  this.title = 'Speed -',
  required this.theme,
});