copyWith method

PartnerEndCustomerWithSecrets copyWith({
  1. PartnerEndCustomerSecrets? secrets,
  2. String? clientId,
  3. String? companyName,
  4. PartnerEndCustomerStatus? status,
})

Implementation

PartnerEndCustomerWithSecrets copyWith(
    {PartnerEndCustomerSecrets? secrets,
    String? clientId,
    String? companyName,
    enums.PartnerEndCustomerStatus? status}) {
  return PartnerEndCustomerWithSecrets(
      secrets: secrets ?? this.secrets,
      clientId: clientId ?? this.clientId,
      companyName: companyName ?? this.companyName,
      status: status ?? this.status);
}