hasFlexProperties static method

bool hasFlexProperties(
  1. FlyStyle style
)

Check if any flex properties are set

Implementation

static bool hasFlexProperties(FlyStyle style) {
  return style.flex != null ||
      style.grow != null ||
      style.shrink != null ||
      style.basis != null;
}