$fromStream static method
Wrapper for the Response.fromStream method
Implementation
static $Value? $fromStream(
Runtime runtime,
$Value? target,
List<$Value?> args,
) {
final value = Response.fromStream(args[0]!.$value);
return $Future.wrap(value.then((e) => $Response.wrap(e)));
}