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