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