FSColSize.all constructor

const FSColSize.all(
  1. int size
)

Create a column size that spans all breakpoints

Implementation

const FSColSize.all(int size)
    : xs = size,
      sm = size,
      md = size,
      lg = size,
      xl = size,
      xxl = size,
      assert(size >= 1 && size <= 12, 'Column size must be between 1 and 12');