configureCallKit method
Configures CallKit provider with app name and settings (iOS only).
On Android, use configureConnectionService instead.
Parameters:
appName: The app name to display in CallKit UIcanUseCallKit: Whether to enable CallKit integration (default: true)iconTemplateImageName: Optional icon template image name for CallKit UI
Implementation
Future<void> configureCallKit({
required String appName,
bool canUseCallKit = true,
String? iconTemplateImageName,
}) async {
throw UnimplementedError('configureCallKit has not been implemented.');
}