LoginTemplate<T extends VirtualAccountState> constructor

LoginTemplate<T extends VirtualAccountState>({
  1. Key? key,
  2. String title = "",
  3. bool isPasswordLoginDefault = true,
  4. bool passkeyEnabled = false,
  5. bool requestSecureLink = false,
  6. String secureLinkAppCode = "",
  7. required dynamic showPrivacyPolicies(),
  8. required dynamic showTermsOfUse(),
  9. required CompanyInformation companyInformation,
  10. required dynamic goToCheckCodePage(
    1. String
    ),
  11. required SignInSignUpWordings signInWording,
  12. Widget? createAccountWidget,
  13. void onSignupPressed()?,
  14. bool hasSignInPasswordless = false,
})

Implementation

LoginTemplate({
  Key? key,
  this.title = "",
  this.isPasswordLoginDefault = true,
  this.passkeyEnabled = false,
  this.requestSecureLink = false,
  this.secureLinkAppCode = "",
  required this.showPrivacyPolicies,
  required this.showTermsOfUse,
  required this.companyInformation,
  required this.goToCheckCodePage,
  required this.signInWording,
  this.createAccountWidget,
  this.onSignupPressed,
  this.hasSignInPasswordless = false,
}) : super(key: key);