LoginConfigItem constructor

LoginConfigItem({
  1. required String verifier,
  2. required TypeOfLogin typeOfLogin,
  3. required String clientId,
  4. String? name,
  5. String? description,
  6. String? verifierSubIdentifier,
  7. String? logoHover,
  8. String? logoLight,
  9. String? logoDark,
  10. bool? mainOption,
  11. bool? showOnModal,
  12. bool? showOnDesktop,
  13. bool? showOnMobile,
})

Implementation

LoginConfigItem({
  required this.verifier,
  required this.typeOfLogin,
  required this.clientId,
  this.name,
  this.description,
  this.verifierSubIdentifier,
  this.logoHover,
  this.logoLight,
  this.logoDark,
  this.mainOption,
  this.showOnModal,
  this.showOnDesktop,
  this.showOnMobile,
});