AuthScreen constructor

AuthScreen({
  1. required String errorTitle,
  2. required String lockedOutMessage,
  3. required String errorMessage,
  4. Widget? customAuthButton,
  5. required Preferences pref,
  6. Key? key,
})

Implementation

AuthScreen(
    {required this.errorTitle,
    required this.lockedOutMessage,
    required this.errorMessage,
    this.customAuthButton,
    required this.pref,
    super.key});