$expand static method
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,
));
}