getAllowIncomingWhileBusy method

  1. @override
Future<bool> getAllowIncomingWhileBusy()
override

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);
}