$empty static method

$Value? $empty(
  1. Runtime runtime,
  2. $Value? target,
  3. List<$Value?> args
)

Creates a new empty $Stream

Implementation

static $Value? $empty(Runtime runtime, $Value? target, List<$Value?> args) {
  return $Stream.wrap(Stream.empty());
}