SpacingScale constructor

const SpacingScale({
  1. double xs = 4.0,
  2. double sm = 8.0,
  3. double md = 16.0,
  4. double lg = 24.0,
  5. double xl = 32.0,
  6. double xxl = 48.0,
})

Creates a SpacingScale with configurable values.

Implementation

const SpacingScale({
  this.xs = 4.0,
  this.sm = 8.0,
  this.md = 16.0,
  this.lg = 24.0,
  this.xl = 32.0,
  this.xxl = 48.0,
});