AuthUserStoryConfiguration constructor

const AuthUserStoryConfiguration({
  1. LoginOptions loginOptionsBuilder(
    1. BuildContext context
    )?,
  2. LoginServiceInterface loginServiceBuilder(
    1. BuildContext context
    )?,
  3. String? afterLoginRoute,
  4. FutureOr<void> onLogin(
    1. String email,
    2. String password,
    3. BuildContext context
    )?,
  5. Widget userBuilder(
    1. BuildContext context,
    2. Widget userPage
    )?,
  6. RegistrationOptions registrationOptionsBuilder(
    1. BuildContext context
    )?,
  7. FutureOr<void> onRequestForgotPassword(
    1. String email,
    2. BuildContext context
    )?,
  8. FutureOr<void> onRegister(
    1. String email,
    2. String password,
    3. BuildContext context
    )?,
  9. void onForgotPassword(
    1. String email,
    2. BuildContext context
    )?,
  10. bool useRegistration = true,
  11. bool useForgotPassword = true,
  12. Widget? forgotPasswordDescription(
    1. BuildContext context
    )?,
  13. Widget loginPageBuilder(
    1. BuildContext context,
    2. Widget loginWidget
    )?,
  14. Widget registrationPageBuilder(
    1. BuildContext context,
    2. Widget registrationScreen
    )?,
  15. Widget forgotPasswordBuilder(
    1. BuildContext context,
    2. Widget forgotPasswordPage
    )?,
  16. Widget forgotPasswordTitle(
    1. BuildContext context
    )?,
  17. WidgetBuilder? beforeRegistrationPage,
  18. WidgetBuilder? afterRegistrationPage,
  19. WidgetBuilder? pageOverlayBuilder,
  20. OnboardingConfiguration? onboardingConfiguration,
  21. Widget? onboardingScreen,
  22. bool useOnboarding = true,
  23. WidgetBuilder? afterLoginPage,
  24. Future<OnboardedUserMixin?> onGetLoggedInUser(
    1. BuildContext context
    )?,
  25. bool canPopOnboarding = true,
  26. Color? loginErrorSnackbarBackgroundColor,
  27. TextStyle? loginErrorSnackbarTitleTextStyle,
  28. TextStyle? loginErrorSnackbarMessageTextStyle,
  29. bool useAfterRegistrationPage = true,
  30. RegistrationRepository? registrationRepository,
})

Implementation

const AuthUserStoryConfiguration({
  this.loginOptionsBuilder,
  this.loginServiceBuilder,
  this.afterLoginRoute,
  this.onLogin,
  this.userBuilder,
  this.registrationOptionsBuilder,
  this.onRequestForgotPassword,
  this.onRegister,
  this.onForgotPassword,
  this.useRegistration = true,
  this.useForgotPassword = true,
  this.forgotPasswordDescription,
  this.loginPageBuilder,
  this.registrationPageBuilder,
  this.forgotPasswordBuilder,
  this.forgotPasswordTitle,
  this.beforeRegistrationPage,
  this.afterRegistrationPage,
  this.pageOverlayBuilder,
  this.onboardingConfiguration,
  this.onboardingScreen,
  this.useOnboarding = true,
  this.afterLoginPage,
  this.onGetLoggedInUser,
  this.canPopOnboarding = true,
  this.loginErrorSnackbarBackgroundColor,
  this.loginErrorSnackbarTitleTextStyle,
  this.loginErrorSnackbarMessageTextStyle,
  this.useAfterRegistrationPage = true,
  this.registrationRepository,
});