copyWith method

LinkDeliveryGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? linkDeliverySessionId,
})

Implementation

LinkDeliveryGetRequest copyWith(
    {String? clientId, String? secret, String? linkDeliverySessionId}) {
  return LinkDeliveryGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      linkDeliverySessionId:
          linkDeliverySessionId ?? this.linkDeliverySessionId);
}