copyWithWrapped method
PartnerEndCustomerWithSecrets
copyWithWrapped({
- Wrapped<
PartnerEndCustomerSecrets?> ? secrets, - Wrapped<
String?> ? clientId, - Wrapped<
String?> ? companyName, - Wrapped<
PartnerEndCustomerStatus?> ? status,
Implementation
PartnerEndCustomerWithSecrets copyWithWrapped(
{Wrapped<PartnerEndCustomerSecrets?>? secrets,
Wrapped<String?>? clientId,
Wrapped<String?>? companyName,
Wrapped<enums.PartnerEndCustomerStatus?>? status}) {
return PartnerEndCustomerWithSecrets(
secrets: (secrets != null ? secrets.value : this.secrets),
clientId: (clientId != null ? clientId.value : this.clientId),
companyName:
(companyName != null ? companyName.value : this.companyName),
status: (status != null ? status.value : this.status));
}