checkIfBusy method

Future<void> checkIfBusy()

Implementation

Future<void> checkIfBusy() async => isIOS
    ? await _channel.invokeMethod<void>('checkIfBusy', <String, dynamic>{})
    : throw Exception('CallKeep.checkIfBusy was called from unsupported OS');