QuickRTCAudioRenderer constructor

const QuickRTCAudioRenderer({
  1. Key? key,
  2. MediaStream? stream,
  3. RemoteStream? remoteStream,
  4. bool muted = false,
  5. VoidCallback? onPlaying,
  6. void onError(
    1. dynamic error
    )?,
})

Implementation

const QuickRTCAudioRenderer({
  super.key,
  this.stream,
  this.remoteStream,
  this.muted = false,
  this.onPlaying,
  this.onError,
});