BiltLoginScreen constructor

const BiltLoginScreen({
  1. Key? key,
  2. required FirebaseAuth auth,
  3. required dynamic onSignInComplete(
    1. User?,
    2. AuthProvider
    ),
  4. Widget? backgroundImage,
  5. Color? dividerColor = Colors.white,
  6. required List<AuthProvider> providers,
  7. Color? backgroundColor,
})

Implementation

const BiltLoginScreen({
  super.key,
  required this.auth,
  required this.onSignInComplete,
  this.backgroundImage,
  this.dividerColor = Colors.white,
  required this.providers,
  this.backgroundColor,
  this.logo,
});