$collapsed static method

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

Wrapper for the TextRange.collapsed constructor

Implementation

static $Value? $collapsed(
    Runtime runtime,
    $Value? thisValue,
    List<$Value?> args,
    ) {
  return $TextRange.wrap(TextRange.collapsed(args[0]!.$value));
}