blacklistParams property
List of query parameters to remove from the URL.
These parameters will be removed from the URL before making the request. Commonly used to remove tracking parameters, session IDs, or other unwanted parameters.
Example:
UrlCleaner(blacklistParams: ['utm_source', 'utm_campaign', 'session_id'])
// Removes tracking and session parameters
Implementation
List<String>? blacklistParams;