Checks if there is an ongoing call
Future<bool> isOnCall() { return _channel.invokeMethod<bool?>('isOnCall', <String, dynamic>{}).then<bool>((bool? value) => value ?? false); }