$vertical static method

$Value? $vertical(
  1. Runtime runtime,
  2. $Value? target,
  3. List<$Value?> args
)

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,
  ));
}