AuthorizeResult constructor

const AuthorizeResult({
  1. required List<Account> accounts,
  2. required AuthToken authToken,
  3. required Uri? walletUriBase,
})

The result of a successful authorize request containing the accounts authorized by the wallet for use by the dApp. You can cache this and use it later to invoke privileged methods.

Implementation

const AuthorizeResult({
  required this.accounts,
  required this.authToken,
  required this.walletUriBase,
});