appendParams property

Map<String, String>? appendParams
getter/setter pair

Additional parameters to append to the cleaned URL.

These parameters will be added to the URL after cleaning. Useful for adding required API parameters, authentication tokens, or other necessary parameters.

Example:

UrlCleaner(appendParams: {'api_key': 'abc123', 'format': 'json'})
// Adds API key and format parameters

Implementation

Map<String, String>? appendParams;