getCall method

  1. @override
Future<CKCall?> getCall(
  1. String uuid
)
override

Get a call currently in the callkit UI.

Implementation

@override
Future<CKCall?> getCall(String uuid) {
  return _channel.invokeMethod<void>('getCall', {
    'uuid': uuid,
  }).then((result) => result as CKCall?);
}