ResolveSipAuthResponse constructor

ResolveSipAuthResponse({
  1. required String authResult,
  2. required String duration,
  3. String? password,
  4. String? trunkId,
  5. String? username,
})

Returns a new ResolveSipAuthResponse instance.

Implementation

ResolveSipAuthResponse({
  required this.authResult,
  required this.duration,
  this.password,
  this.trunkId,
  this.username,
});