setSpeaker method
Set audio speaker
isOn
= true if is speaker
Return ZoomVideoSDKError_Success
if the function succeeds. Otherwise, this function returns an error.
Implementation
@override
Future<void> setSpeaker(bool isOn) async {
var params = <String, dynamic>{};
params.putIfAbsent("isOn", () => isOn);
await methodChannel.invokeMethod<void>('setSpeaker', params);
}