$new static method
Implementation
static $Value? $new(Runtime runtime, $Value? target, List<$Value?> args) {
return $BorderSide.wrap(BorderSide(
color: args[0]?.$value ?? const Color(0xFF000000),
width: args[1]?.$value ?? 1.0,
style: args[2]?.$value ?? BorderStyle.solid));
}