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,
})

Implementation

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