advencedPlayer method

PlayerWidgetBundle advencedPlayer(
  1. BuildContext context, {
  2. Color sliderColor = Colors.white,
  3. Color buttonColor = Colors.white,
  4. List<Color> bgColors = const [Color.fromARGB(255, 0, 119, 255), Color.fromARGB(255, 3, 152, 238), Color.fromARGB(255, 0, 132, 255), Color.fromARGB(255, 7, 62, 158)],
})

Implementation

PlayerWidgetBundle advencedPlayer(
  BuildContext context, {
  Color sliderColor = Colors.white,
  Color buttonColor = Colors.white,
  List<Color> bgColors = const [
    Color.fromARGB(255, 0, 119, 255),
    Color.fromARGB(255, 3, 152, 238),
    Color.fromARGB(255, 0, 132, 255),
    Color.fromARGB(255, 7, 62, 158),
  ],
}) {
  return widgetPlayerAdvenced(
    context,
    service,
    bgColors: bgColors,
    buttonColor: buttonColor,
    sliderColor: sliderColor,
  );
}