decode static method

String decode(
  1. String url
)

Decodes a URL

Example:

UrlUtils.decode('hello%20world'); // 'hello world'

Implementation

static String decode(String url) {
  return Uri.decodeComponent(url);
}