copyWith method
AuthorizationStateWaitEmailCode
copyWith({
- bool? allowAppleId,
- bool? allowGoogleId,
- EmailAddressAuthenticationCodeInfo? codeInfo,
- 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,
);