SIPPinProtectionConfigsResponse constructor

SIPPinProtectionConfigsResponse({
  1. String? defaultPin,
  2. required bool enabled,
  3. int? maxAttempts,
  4. int? requiredPinDigits,
})

Returns a new SIPPinProtectionConfigsResponse instance.

Implementation

SIPPinProtectionConfigsResponse({
  this.defaultPin,
  required this.enabled,
  this.maxAttempts,
  this.requiredPinDigits,
});