$decodeQueryComponent static method

$Value? $decodeQueryComponent(
  1. Runtime runtime,
  2. $Value? target,
  3. List<$Value?> args
)

Implementation

static $Value? $decodeQueryComponent(
    Runtime runtime, $Value? target, List<$Value?> args) {
  return $String(Uri.decodeQueryComponent(args[0]!.$value,
      encoding: (args[1]?.$value as Encoding?) ?? utf8));
}