StackParentData constructor

const StackParentData({
  1. num? left,
  2. num? right,
  3. num? top,
  4. num? bottom,
  5. num? width,
  6. num? height,
})

Implementation

const StackParentData({
  this.left,
  this.right,
  this.top,
  this.bottom,
  this.width,
  this.height,
});