CkAuthFlowHandlers constructor

const CkAuthFlowHandlers({
  1. required void onAuthenticated(),
  2. required void showLogin(),
  3. void showOtpVerification()?,
  4. void showOnboarding()?,
  5. void showResetPassword()?,
  6. bool firstTimeOnly = true,
})

Implementation

const CkAuthFlowHandlers({
  required this.onAuthenticated,
  required this.showLogin,
  this.showOtpVerification,
  this.showOnboarding,
  this.showResetPassword,
  this.firstTimeOnly = true,
});