AuthScreen constructor

AuthScreen({
  1. Key? key,
  2. required AuthCubit authCubit,
  3. required VoidCallback onLoginSuccess,
  4. required dynamic fb_flowName,
  5. required dynamic google_flowName,
  6. required dynamic email_phone_flowName,
  7. dynamic loginAsText = "Login",
})

Implementation

AuthScreen({
  super.key,
  required this.authCubit,
  required this.onLoginSuccess,
  required this.fb_flowName,
  required this.google_flowName,
  required this.email_phone_flowName, this.loginAsText = "Login",
});