$horizontal static method
Implementation
static $Value? $horizontal(
Runtime runtime, $Value? target, List<$Value?> args) {
return $BorderRadius.wrap(BorderRadius.horizontal(
left: args[0]!.$value ?? Radius.zero,
right: args[1]!.$value ?? Radius.zero,
));
}