FSColSize constructor

const FSColSize({
  1. int xs = 12,
  2. int? sm,
  3. int? md,
  4. int? lg,
  5. int? xl,
  6. int? xxl,
})

Implementation

const FSColSize({
  this.xs = 12, // Default: full width on mobile
  this.sm,
  this.md,
  this.lg,
  this.xl,
  this.xxl,
}) : assert(xs >= 1 && xs <= 12, 'XS column size must be between 1 and 12');