shouldFillInCounterAxis property

bool get shouldFillInCounterAxis

Whether the container should fill available space in the counter axis

Implementation

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