$fromBytes static method
Wrapper for the ByteStream.fromBytes constructor
Implementation
static $Value? $fromBytes(
Runtime runtime,
$Value? thisValue,
List<$Value?> args,
) {
return $ByteStream.wrap(
ByteStream.fromBytes((args[0]!.$reified as List).cast()),
);
}