copyWith method
- int? level,
- AuthenticationConfidenceLevelCustomPolicy? custom,
Implementation
AuthenticationConfidenceLevel copyWith(
{int? level, AuthenticationConfidenceLevelCustomPolicy? custom}) {
return AuthenticationConfidenceLevel(
level: level ?? this.level, custom: custom ?? this.custom);
}