shouldHugContentInCounterAxis property

bool get shouldHugContentInCounterAxis

Whether the container should hug its content in the counter axis

Implementation

bool get shouldHugContentInCounterAxis {
  return getCached("shouldHugContentInCounterAxis", () {
    return counterAxisSizingMode == figma.CounterAxisSizingMode.auto;
  });
}