copyWith method

PartnerEndCustomer copyWith({
  1. String? clientId,
  2. String? companyName,
  3. 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);
}