AudioTesting constructor

const AudioTesting({
  1. Key? key,
  2. RoundedRectangleBorder? shape,
  3. BorderSide? side,
  4. double? elevation,
  5. AlignmentGeometry? alignment,
  6. TextStyle? textStyle,
  7. double? buttonHeight,
  8. Color? shadowColor,
  9. double? buttonWidth,
  10. EdgeInsetsGeometry? padding,
  11. TextStyle? buttonTextStyle,
  12. Color? buttonBackgroundColor,
  13. bool showIncreaseVolumeButton = true,
  14. bool showDecreaseVolumeButton = true,
  15. bool showFlashlightButton = true,
  16. String increaseVolumeButtonText = 'Increase Volume',
  17. String decreaseVolumeButtonText = 'Decrease Volume',
  18. String flashlightButtonText = 'Flashlight',
})

Implementation

const AudioTesting({
  super.key,
  this.shape,
  this.side,
  this.elevation,
  this.alignment,
  this.textStyle,
  this.buttonHeight,
  this.shadowColor,
  this.buttonWidth,
  this.padding,
  this.buttonTextStyle,
  this.buttonBackgroundColor,
  this.showIncreaseVolumeButton = true,
  this.showDecreaseVolumeButton = true,
  this.showFlashlightButton = true,
  this.increaseVolumeButtonText = 'Increase Volume',
  this.decreaseVolumeButtonText = 'Decrease Volume',
  this.flashlightButtonText = 'Flashlight',
});