LegacyLinkConfiguration constructor

LegacyLinkConfiguration({
  1. required String publicKey,
  2. String? token,
  3. String? clientName,
  4. LinkEnvironment? environment,
  5. List<LinkProduct>? products,
  6. String? webhook,
  7. String? linkCustomizationName,
  8. String? language,
  9. List<String>? countryCodes,
  10. String? userLegalName,
  11. String? userEmailAddress,
  12. String? userPhoneNumber,
  13. List<LinkAccountSubtype>? accountSubtypes,
  14. LinkOAuthConfiguration? oauthConfiguration,
})

Create a LinkLegacyConfiguration.

Implementation

LegacyLinkConfiguration({
  required this.publicKey,
  this.token,
  this.clientName,
  this.environment,
  this.products,
  this.webhook,
  this.linkCustomizationName,
  this.language,
  this.countryCodes,
  this.userLegalName,
  this.userEmailAddress,
  this.userPhoneNumber,
  this.accountSubtypes,
  this.oauthConfiguration,
});