copyWith method

PartnerCustomerCreateResponse copyWith({
  1. PartnerEndCustomerWithSecrets? endCustomer,
  2. String? requestId,
})

Implementation

PartnerCustomerCreateResponse copyWith(
    {PartnerEndCustomerWithSecrets? endCustomer, String? requestId}) {
  return PartnerCustomerCreateResponse(
      endCustomer: endCustomer ?? this.endCustomer,
      requestId: requestId ?? this.requestId);
}