updateCallKitCallDetails method
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 'sip_callId')
Implementation
Future<void>? updateCallKitCallDetails(String callkit_CallUUID, int? sip_callId,
[String? localizedCallerName, String? genericHandle, bool? withVideo]) {
return _platform.updateCallKitCallDetails(callkit_CallUUID, sip_callId, localizedCallerName, genericHandle, withVideo);
}