$expand static method

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

Creates a new instance of $SizedBox using SizedBox.expand from args

Implementation

static $Value? $expand(Runtime runtime, $Value? target, List<$Value?> args) {
  return $SizedBox.wrap(SizedBox.expand(
    key: args[0]?.$value,
    child: args[1]?.$value,
  ));
}