Scopes constructor

Scopes({
  1. ProductAccess? productAccess,
  2. List<AccountAccess>? accounts,
  3. bool? newAccounts,
})

Implementation

Scopes({
  this.productAccess,
  this.accounts,
  this.newAccounts,
});