$only static method
Implementation
static $Value? $only(Runtime runtime, $Value? target, List<$Value?> args) {
return $EdgeInsets.wrap(EdgeInsets.only(
left: args[0]?.$value ?? 0.0,
top: args[1]?.$value ?? 0.0,
right: args[2]?.$value ?? 0.0,
bottom: args[3]?.$value ?? 0.0,
));
}