$parse static method

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

Implementation

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