AuthManagerWidget constructor

AuthManagerWidget({
  1. Key? key,
  2. required Widget splashScreen,
  3. required Widget notLoggedScreen,
  4. required Widget loggedScreen,
  5. Future actionsAfterLogIn(
    1. AuthMethod,
    2. User?
    )?,
  6. Future actionsBeforeLogOut(
    1. User?
    )?,
})

Implementation

AuthManagerWidget(
    {Key? key,
    required this.splashScreen,
    required this.notLoggedScreen,
    required this.loggedScreen,
    this.actionsAfterLogIn,
    this.actionsBeforeLogOut})
    : super(key: key);