copyWith method

AuthenticationConfidenceLevel copyWith({
  1. int? level,
  2. AuthenticationConfidenceLevelCustomPolicy? custom,
})

Implementation

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