AirPlayStatusButton constructor

const AirPlayStatusButton({
  1. Key? key,
  2. double width = 40,
  3. double height = 40,
  4. dynamic onAirPlayStateChanged(
    1. bool isActive
    )?,
  5. VoidCallback? onPressed,
})

Implementation

const AirPlayStatusButton({
  super.key,
  this.width = 40,
  this.height = 40,
  this.onAirPlayStateChanged,
  this.onPressed,
});