muteAudio method

Future<void> muteAudio(
  1. bool status,
  2. dynamic callback(
    1. FlyResponse response
    )?
)

This method is used to mute the audio.

Implementation

Future<void> muteAudio(
    bool status, Function(FlyResponse response)? callback) async {
  throw UnimplementedError('muteAudio has not been implemented.');
}