SipConfig constructor

const SipConfig({
  1. required String domain,
  2. required String username,
  3. required String password,
  4. String? realm,
  5. String? callerId,
  6. String? displayName,
  7. int port = 5060,
  8. bool useWebSocket = false,
})

Implementation

const SipConfig({
  required this.domain,
  required this.username,
  required this.password,
  this.realm,
  this.callerId,
  this.displayName,
  this.port = 5060,
  this.useWebSocket = false,
});