copyWithWrapped method
- Wrapped<
int?> ? level, - Wrapped<
AuthenticationConfidenceLevelCustomPolicy?> ? custom,
Implementation
AuthenticationConfidenceLevel copyWithWrapped(
{Wrapped<int?>? level,
Wrapped<AuthenticationConfidenceLevelCustomPolicy?>? custom}) {
return AuthenticationConfidenceLevel(
level: (level != null ? level.value : this.level),
custom: (custom != null ? custom.value : this.custom));
}