$new static method
Wrapper for the Request.new constructor
Implementation
static $Value? $new(Runtime runtime, $Value? thisValue, List<$Value?> args) {
final url = args[1]!.$value;
runtime.assertPermission('network', url.toString());
return $Request.wrap(Request(args[0]!.$value, args[1]!.$value));
}