copyWithWrapped method
Implementation
AccountProductAccessNullable copyWithWrapped(
{Wrapped<bool?>? accountData,
Wrapped<bool?>? statements,
Wrapped<bool?>? taxDocuments}) {
return AccountProductAccessNullable(
accountData:
(accountData != null ? accountData.value : this.accountData),
statements: (statements != null ? statements.value : this.statements),
taxDocuments:
(taxDocuments != null ? taxDocuments.value : this.taxDocuments));
}