copyWith method

PartnerCustomerEnableRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? endCustomerClientId,
})

Implementation

PartnerCustomerEnableRequest copyWith(
    {String? clientId, String? secret, String? endCustomerClientId}) {
  return PartnerCustomerEnableRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      endCustomerClientId: endCustomerClientId ?? this.endCustomerClientId);
}