SipInboundCredentials constructor

SipInboundCredentials({
  1. required String apiKey,
  2. Map<String, Object> callCustomData = const {},
  3. required String callId,
  4. required String callType,
  5. required String token,
  6. Map<String, Object> userCustomData = const {},
  7. required String userId,
})

Returns a new SipInboundCredentials instance.

Implementation

SipInboundCredentials({
  required this.apiKey,
  this.callCustomData = const {},
  required this.callId,
  required this.callType,
  required this.token,
  this.userCustomData = const {},
  required this.userId,
});