copyWith method
PartnerEndCustomerWithSecrets
copyWith({
- PartnerEndCustomerSecrets? secrets,
- String? clientId,
- String? companyName,
- 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);
}