urlDecoded property

String urlDecoded

Decodes a URL-encoded string back into a regular string. This is the inverse operation of URL encoding.

Example usage:

print('Hello%20World'.urlDecoded); // Output: 'Hello World'

Implementation

String get urlDecoded => Uri.decodeComponent(this);