AccountLinkPayload constructor

AccountLinkPayload({
  1. required dynamic scopes,
  2. required String redirectUrl,
  3. required String referenceId,
  4. String? nonce,
  5. int? requestedAt,
  6. String? orderDescription,
})

Implementation

AccountLinkPayload(
    {required scopes,
    required this.redirectUrl,
    required this.referenceId,
    this.nonce,
    this.requestedAt,
    this.orderDescription})
    : scopes_ = AccountLinkPayload.checkScopes(scopes);