ScopesNullable constructor

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

Implementation

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