PositionedModel constructor

PositionedModel(
  1. WidgetModel parent,
  2. String? id, {
  3. dynamic left,
  4. dynamic right,
  5. dynamic top,
  6. dynamic bottom,
  7. dynamic xoffset,
  8. dynamic yoffset,
  9. dynamic depth,
  10. Widget? child,
  11. Scope? scope,
})

Implementation

PositionedModel(super.parent, super.id,
    {dynamic left,
    dynamic right,
    dynamic top,
    dynamic bottom,
    dynamic xoffset,
    dynamic yoffset,
    dynamic depth,
    this.child,
    super.scope}) {
  this.top = top;
  this.bottom = bottom;
  this.left = left;
  this.right = right;
  this.xoffset = xoffset;
  this.yoffset = yoffset;
  this.depth = depth;
}