$only static method
Create a new $BorderRadius using BorderRadius.only from args
Implementation
static $Value? $only(Runtime runtime, $Value? target, List<$Value?> args) {
return $BorderRadius.wrap(BorderRadius.only(
topLeft: args[0]!.$value ?? Radius.zero,
topRight: args[1]!.$value ?? Radius.zero,
bottomLeft: args[2]!.$value ?? Radius.zero,
bottomRight: args[3]!.$value ?? Radius.zero,
));
}