CallKitParams constructor

const CallKitParams({
  1. String? id,
  2. String? nameCaller,
  3. String? appName,
  4. String? avatar,
  5. String? handle,
  6. double? type,
  7. double? duration,
  8. String? textAccept,
  9. String? textDecline,
  10. String? textMissedCall,
  11. String? textCallback,
  12. Map<String, dynamic>? extra,
  13. Map<String, dynamic>? headers,
  14. AndroidParams? android,
  15. IOSParams? ios,
})

Implementation

const CallKitParams({
  this.id,
  this.nameCaller,
  this.appName,
  this.avatar,
  this.handle,
  this.type,
  this.duration,
  this.textAccept,
  this.textDecline,
  this.textMissedCall,
  this.textCallback,
  this.extra,
  this.headers,
  this.android,
  this.ios,
});