configureCallKit method

Future<void> configureCallKit({
  1. required String appName,
  2. bool canUseCallKit = true,
  3. String? iconTemplateImageName,
})

Configures CallKit provider with app name and settings (iOS only).

On Android, use configureConnectionService instead.

Parameters:

  • appName: The app name to display in CallKit UI
  • canUseCallKit: 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.');
}