$all static method

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

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