$fromLTWH static method

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

Create a new $Rect using Rect.fromLTWH from args

Implementation

static $Value? $fromLTWH(
    Runtime runtime, $Value? target, List<$Value?> args) {
  return $Rect.wrap(Rect.fromLTWH(
      args[0]!.$value, args[1]!.$value, args[2]!.$value, args[3]!.$value));
}