AuthConnectionConfig constructor

AuthConnectionConfig({
  1. required AuthConnection authConnection,
  2. required String authConnectionId,
  3. required String clientId,
  4. String? name,
  5. String? description,
  6. String? groupedAuthConnectionId,
  7. String? logoHover,
  8. String? logoLight,
  9. String? logoDark,
  10. bool? mainOption,
  11. bool? showOnModal,
  12. bool? showOnDesktop,
  13. bool? showOnMobile,
  14. ExtraLoginOptions? jwtParameters,
})

Implementation

AuthConnectionConfig({
  required this.authConnection,
  required this.authConnectionId,
  required this.clientId,
  this.name,
  this.description,
  this.groupedAuthConnectionId,
  this.logoHover,
  this.logoLight,
  this.logoDark,
  this.mainOption,
  this.showOnModal,
  this.showOnDesktop,
  this.showOnMobile,
  this.jwtParameters,
});