BsColConfig constructor

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

Creates a BsColConfig with optional spans for each breakpoint.

Implementation

const BsColConfig({
  this.xs, // < 576px  (Standard / mobile)
  this.sm, // >= 576px
  this.md, // >= 768px
  this.lg, // >= 992px
  this.xl, // >= 1200px
  this.xxl, // >= 1400px
});