shouldFillInPrimaryAxis property

bool get shouldFillInPrimaryAxis

Whether the container should fill available space in the primary axis

Implementation

bool get shouldFillInPrimaryAxis {
  return getCached("shouldFillInPrimaryAxis", () {
    return primaryAxisSizingMode == figma.PrimaryAxisSizingMode.fixed;
  });
}