$new static method

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

Implementation

static $Value? $new(Runtime runtime, $Value? target, List<$Value?> args) {
  return $Container.wrap(Container(
    key: args[0]?.$value,
    alignment: args[1]?.$value,
    padding: args[2]?.$value,
    color: args[3]?.$value,
    decoration: args[4]?.$value,
    foregroundDecoration: args[5]?.$value,
    width: args[6]?.$value,
    height: args[7]?.$value,
    constraints: args[8]?.$value,
    margin: args[9]?.$value,
    transformAlignment: args[10]?.$value,
    child: args[11]?.$value,
    clipBehavior: args[12]?.$value ?? Clip.none,
  ));
}