updateCallKitCallDetails method

Future<void>? updateCallKitCallDetails(
  1. String callkitCallUUID,
  2. int? sipCallId, [
  3. String? localizedCallerName,
  4. String? genericHandle,
  5. bool? withVideo,
])

Update CallKit call details (app can invoke it twice:

  • first when got and extracted some data from push payload and second - when received INVITE and got 'sipCallId')

Implementation

Future<void>? updateCallKitCallDetails(
  String callkitCallUUID,
  int? sipCallId, [
  String? localizedCallerName,
  String? genericHandle,
  bool? withVideo,
]) {
  return _platform.updateCallKitCallDetails(
    callkitCallUUID,
    sipCallId,
    localizedCallerName,
    genericHandle,
    withVideo,
  );
}