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