$getByName static method
Wrapper for the Encoding.getByName method
Implementation
static $Value? $getByName(
Runtime runtime, $Value? target, List<$Value?> args) {
final value = Encoding.getByName(args[0]!.$value);
return value == null ? $null() : $Encoding.wrap(value);
}