AccountLinkCreateOptions constructor

const AccountLinkCreateOptions({
  1. required String account,
  2. AccountLinkCollect? collect,
  3. AccountLinkCollectionOptions? collectionOptions,
  4. List<String>? expand,
  5. String? refreshUrl,
  6. String? returnUrl,
  7. required AccountLinkType type,
})

Implementation

const AccountLinkCreateOptions({
  required this.account,
  this.collect,
  this.collectionOptions,
  this.expand,
  this.refreshUrl,
  this.returnUrl,
  required this.type,
});