LayoutData constructor

LayoutData({
  1. double? height,
  2. double? width,
  3. bool isComplex = false,
  4. bool spread = false,
  5. bool stretch = false,
  6. Alignment alignment = Alignment.topLeft,
  7. Axis axis = Axis.horizontal,
})

Implementation

LayoutData({
  this.height,
  this.width,
  this.isComplex = false,
  this.spread = false,
  this.stretch = false,
  this.alignment = Alignment.topLeft,
  this.axis = Axis.horizontal,
});