copyWithWrapped method

PartnerEndCustomerWithSecrets copyWithWrapped({
  1. Wrapped<PartnerEndCustomerSecrets?>? secrets,
  2. Wrapped<String?>? clientId,
  3. Wrapped<String?>? companyName,
  4. 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));
}