$fromPoints static method
Create a new $Rect using Rect.fromPoints from args
Implementation
static $Value? $fromPoints(
Runtime runtime, $Value? target, List<$Value?> args) {
return $Rect.wrap(
Rect.fromPoints(args[0]!.$value as Offset, args[1]!.$value as Offset));
}