copyWithWrapped method

AuthenticationConfidenceLevel copyWithWrapped({
  1. Wrapped<int?>? level,
  2. 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));
}