$encodeFull static method

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

Implementation

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