LayoutBoxChildData constructor

LayoutBoxChildData({
  1. required ViewableWidgetModel model,
  2. required Widget child,
  3. double? left,
  4. double? top,
  5. double? right,
  6. double? bottom,
  7. double? width,
  8. double? height,
})

Implementation

LayoutBoxChildData({
  required this.model,
  required super.child,
  this.left,
  this.top,
  this.right,
  this.bottom,
  this.width,
  this.height,
});