$only static method

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

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