Padding constructor

Padding({
  1. int? bottom,
  2. int? left,
  3. int? right,
  4. int? top,
})

Implementation

Padding({
  this.bottom,
  this.left,
  this.right,
  this.top,
});