Pad constructor

Pad({
  1. int? bottomPixels,
  2. int? leftPixels,
  3. int? rightPixels,
  4. int? topPixels,
})

Implementation

Pad({
  this.bottomPixels,
  this.leftPixels,
  this.rightPixels,
  this.topPixels,
});