copyWith method

AuthorizationStateWaitEmailCode copyWith({
  1. bool? allowAppleId,
  2. bool? allowGoogleId,
  3. EmailAddressAuthenticationCodeInfo? codeInfo,
  4. EmailAddressResetState? emailAddressResetState,
})

Implementation

AuthorizationStateWaitEmailCode copyWith({
  bool? allowAppleId,
  bool? allowGoogleId,
  EmailAddressAuthenticationCodeInfo? codeInfo,
  EmailAddressResetState? emailAddressResetState,
}) => AuthorizationStateWaitEmailCode(
  allowAppleId: allowAppleId ?? this.allowAppleId,
  allowGoogleId: allowGoogleId ?? this.allowGoogleId,
  codeInfo: codeInfo ?? this.codeInfo,
  emailAddressResetState:
      emailAddressResetState ?? this.emailAddressResetState,
);