copyWith method
Implementation
AuthorizationStateWaitEmailAddress copyWith({
bool? allowAppleId,
bool? allowGoogleId,
}) => AuthorizationStateWaitEmailAddress(
allowAppleId: allowAppleId ?? this.allowAppleId,
allowGoogleId: allowGoogleId ?? this.allowGoogleId,
);