CallKitParams constructor

const CallKitParams({
  1. required String id,
  2. String? nameCaller,
  3. String? appName,
  4. String? avatar,
  5. String? handle,
  6. int? type,
  7. int? duration,
  8. bool isAccepted = false,
  9. NotificationParams? missedCallNotification,
  10. NotificationParams? callingNotification,
  11. Map<String, dynamic>? extra,
  12. Map<String, dynamic>? headers,
  13. AndroidParams? android,
  14. IOSParams? ios,
})

Implementation

const CallKitParams({
  required this.id,
  this.nameCaller,
  this.appName,
  this.avatar,
  this.handle,
  this.type,
  this.duration,
  this.isAccepted = false,
  this.missedCallNotification,
  this.callingNotification,
  this.extra,
  this.headers,
  this.android,
  this.ios,
});