$new static method
Implementation
static $Value? $new(Runtime runtime, $Value? target, List<$Value?> args) {
return $ElevatedButton.wrap(ElevatedButton(
child: args[0]!.$value,
onPressed: args[1] == null
? null
: () => (args[1]! as EvalCallable).call(runtime, null, []),
));
}