$checkNotNegative static method
Implementation
static $Value? $checkNotNegative(
Runtime runtime,
$Value? target,
List<$Value?> args,
) {
return $num(
RangeError.checkNotNegative(
args[0]?.$value,
args[1]?.$value,
args[2]?.$value,
),
);
}