copyWith method
Scopes
copyWith({
- ProductAccess? productAccess,
- List<
AccountAccess> ? accounts, - bool? newAccounts,
Implementation
Scopes copyWith(
{ProductAccess? productAccess,
List<AccountAccess>? accounts,
bool? newAccounts}) {
return Scopes(
productAccess: productAccess ?? this.productAccess,
accounts: accounts ?? this.accounts,
newAccounts: newAccounts ?? this.newAccounts);
}