copyWith method
PartnerEndCustomer
copyWith({
- String? clientId,
- String? companyName,
- PartnerEndCustomerStatus? status,
Implementation
PartnerEndCustomer copyWith(
{String? clientId,
String? companyName,
enums.PartnerEndCustomerStatus? status}) {
return PartnerEndCustomer(
clientId: clientId ?? this.clientId,
companyName: companyName ?? this.companyName,
status: status ?? this.status);
}