copyWith method

AuthorizationStateWaitEmailAddress copyWith({
  1. bool? allowAppleId,
  2. bool? allowGoogleId,
})

Implementation

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