ControlMediaOptions constructor

ControlMediaOptions({
  1. required ControlMediaData data,
  2. ShowAlert? showAlert,
  3. VoidCallback? clickAudio,
  4. VoidCallback? clickVideo,
  5. bool audioAlreadyOn = false,
  6. bool videoAlreadyOn = false,
})

Implementation

ControlMediaOptions({
  required this.data,
  this.showAlert,
  this.clickAudio,
  this.clickVideo,
  this.audioAlreadyOn = false,
  this.videoAlreadyOn = false,
});