RadiusConfig constructor

const RadiusConfig({
  1. String xs = '4px',
  2. String sm = '6px',
  3. String md = '8px',
  4. String lg = '10px',
  5. String xl = '14px',
  6. String xxl = '18px',
  7. String full = '9999px',
})

Implementation

const RadiusConfig({
  this.xs = '4px',
  this.sm = '6px',
  this.md = '8px',
  this.lg = '10px',
  this.xl = '14px',
  this.xxl = '18px',
  this.full = '9999px',
});