VideoProgressColors constructor

const VideoProgressColors({
  1. Color playedColor = const Color.fromRGBO(255, 0, 0, 0.7),
  2. Color bufferedColor = const Color.fromRGBO(50, 50, 200, 0.2),
  3. Color backgroundColor = const Color.fromRGBO(200, 200, 200, 0.5),
})

Implementation

const VideoProgressColors({
  this.playedColor = const Color.fromRGBO(255, 0, 0, 0.7),
  this.bufferedColor = const Color.fromRGBO(50, 50, 200, 0.2),
  this.backgroundColor = const Color.fromRGBO(200, 200, 200, 0.5),
});