ChewieProgressColors constructor

ChewieProgressColors({
  1. Color playedColor = const Color.fromRGBO(255, 0, 0, 0.7),
  2. Color bufferedColor = const Color.fromRGBO(30, 30, 200, 0.2),
  3. Color handleColor = const Color.fromRGBO(200, 200, 200, 1.0),
  4. Color backgroundColor = const Color.fromRGBO(200, 200, 200, 0.5),
})

Implementation

ChewieProgressColors({
  Color playedColor = const Color.fromRGBO(255, 0, 0, 0.7),
  Color bufferedColor = const Color.fromRGBO(30, 30, 200, 0.2),
  Color handleColor = const Color.fromRGBO(200, 200, 200, 1.0),
  Color backgroundColor = const Color.fromRGBO(200, 200, 200, 0.5),
}) : playedPaint = Paint()..color = playedColor,
     bufferedPaint = Paint()..color = bufferedColor,
     handlePaint = Paint()..color = handleColor,
     backgroundPaint = Paint()..color = backgroundColor;