AndroidCallKitSettings constructor

AndroidCallKitSettings({
  1. bool enableRingtone = true,
  2. bool enableIncomingCallUI = true,
})

Creates a new instance of AndroidCallKitSettings.

Use this to configure the call experience on Android.

Implementation

AndroidCallKitSettings({
  this.enableRingtone = true,
  this.enableIncomingCallUI = true,
});