$new static method

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

Implementation

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