copyWith method

PartnerCustomerGetResponse copyWith({
  1. PartnerEndCustomer? endCustomer,
  2. String? requestId,
})

Implementation

PartnerCustomerGetResponse copyWith(
    {PartnerEndCustomer? endCustomer, String? requestId}) {
  return PartnerCustomerGetResponse(
      endCustomer: endCustomer ?? this.endCustomer,
      requestId: requestId ?? this.requestId);
}