isOnCall method

Future<bool> isOnCall()

Checks if there is an ongoing call

Implementation

Future<bool> isOnCall() {
  return _channel.invokeMethod<bool?>('isOnCall',
      <String, dynamic>{}).then<bool>((bool? value) => value ?? false);
}