$new static method
Creates a new instance of $FractionallySizedBox from args
Implementation
static $Value? $new(Runtime runtime, $Value? target, List<$Value?> args) {
return $FractionallySizedBox.wrap(FractionallySizedBox(
key: args[0]?.$value,
alignment: args[1]?.$value ?? Alignment.center,
widthFactor: args[2]?.$value,
heightFactor: args[3]?.$value,
child: args[4]?.$value,
));
}