copyWith method
AccountAccess
copyWith({
- String? uniqueId,
- bool? authorized,
- AccountProductAccessNullable? accountProductAccess,
Implementation
AccountAccess copyWith(
{String? uniqueId,
bool? authorized,
AccountProductAccessNullable? accountProductAccess}) {
return AccountAccess(
uniqueId: uniqueId ?? this.uniqueId,
authorized: authorized ?? this.authorized,
accountProductAccess:
accountProductAccess ?? this.accountProductAccess);
}