AuthScreen constructor

const AuthScreen({
  1. Key? key,
  2. required bool isWeb,
  3. String appName = '',
  4. Function? onResetPassword,
  5. Function? onCreateUser,
  6. Function? onSignInWithEmail,
  7. Function? onSignInWithGoogle,
  8. Color? colorPrimary,
  9. Color? backgroundColor,
})

Implementation

const AuthScreen({
  super.key,
  required this.isWeb,
  this.appName = '',
  this.onResetPassword,
  this.onCreateUser,
  this.onSignInWithEmail,
  this.onSignInWithGoogle,
  this.colorPrimary,
  this.backgroundColor,
});