CallKeepIncomingConfig constructor

CallKeepIncomingConfig({
  1. String contentTitle = "",
  2. String acceptText = 'Accept',
  3. String declineText = 'Decline',
  4. String missedCallText = 'Missed call',
  5. String callBackText = 'Call back',
  6. required String uuid,
  7. required String appName,
  8. String? callerName,
  9. String? avatar,
  10. String? handle,
  11. bool hasVideo = false,
  12. double duration = 180,
  13. Map<String, dynamic>? extra,
  14. Map<String, dynamic>? headers,
  15. required CallKeepAndroidConfig androidConfig,
  16. required CallKeepIosConfig iosConfig,
})

Implementation

CallKeepIncomingConfig({
  this.contentTitle = "",
  this.acceptText = 'Accept',
  this.declineText = 'Decline',
  this.missedCallText = 'Missed call',
  this.callBackText = 'Call back',
  required String uuid,
  required this.appName,
  String? callerName,
  this.avatar,
  String? handle,
  bool hasVideo = false,
  double duration = 180,
  Map<String, dynamic>? extra,
  this.headers,
  required this.androidConfig,
  required this.iosConfig,
}) : super(
        uuid: uuid,
        callerName: callerName,
        handle: handle,
        hasVideo: hasVideo,
        duration: duration,
        extra: extra,
      );