copyWith method
Implementation
ProductAccess copyWith(
{bool? statements,
bool? identity,
bool? auth,
bool? transactions,
bool? accountsDetailsTransactions,
bool? accountsRoutingNumber,
bool? accountsStatements,
bool? accountsTaxStatements,
bool? customersProfiles}) {
return ProductAccess(
statements: statements ?? this.statements,
identity: identity ?? this.identity,
auth: auth ?? this.auth,
transactions: transactions ?? this.transactions,
accountsDetailsTransactions:
accountsDetailsTransactions ?? this.accountsDetailsTransactions,
accountsRoutingNumber:
accountsRoutingNumber ?? this.accountsRoutingNumber,
accountsStatements: accountsStatements ?? this.accountsStatements,
accountsTaxStatements:
accountsTaxStatements ?? this.accountsTaxStatements,
customersProfiles: customersProfiles ?? this.customersProfiles);
}