TSize constructor

const TSize({
  1. double minW = 0,
  2. double minH = 0,
  3. double hPad = 0,
  4. double vPad = 0,
  5. double font = 12,
  6. double icon = 16,
  7. double radius = 6,
  8. double spacing = 4,
})

Creates a custom TSize definition.

Implementation

const TSize({
  this.minW = 0,
  this.minH = 0,
  this.hPad = 0,
  this.vPad = 0,
  this.font = 12,
  this.icon = 16,
  this.radius = 6,
  this.spacing = 4,
});