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