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