GoogleCastVolume constructor

const GoogleCastVolume({
  1. Key? key,
  2. Color? iconColor,
  3. double? iconSize,
  4. Color? popupBackgroundColor,
  5. Color? sliderActiveColor,
  6. Color? sliderInactiveColor,
  7. Color? sliderThumbColor,
})

Creates a Google Cast volume control widget.

All styling parameters are optional and will use default Material Design colors if not specified.

Implementation

const GoogleCastVolume({
  super.key,
  this.iconColor,
  this.iconSize,
  this.popupBackgroundColor,
  this.sliderActiveColor,
  this.sliderInactiveColor,
  this.sliderThumbColor,
});