getAllowIncomingWhileBusy method
Whether incoming calls are raised while already on a call. Defaults to true.
Implementation
@override
Future<bool> getAllowIncomingWhileBusy() {
return _channel.invokeMethod<bool?>('getAllowIncomingWhileBusy', {}).then<bool>((bool? value) => value ?? true);
}