$decodeFull static method

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

Implementation

static $Value? $decodeFull(
  Runtime runtime,
  $Value? target,
  List<$Value?> args,
) {
  final uri = args[0]!.$value as String;
  return $String(Uri.decodeFull(uri));
}