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. Scope? scope,
})

Implementation

PositionedModel(WidgetModel parent,
  String? id,
 {dynamic left,
  dynamic right,
  dynamic top,
  dynamic bottom,
  dynamic xoffset,
  dynamic yoffset,
  dynamic depth,
  Scope? scope
  }) : super(parent, id, scope: scope)
{
  this.top     = top;
  this.bottom  = bottom;
  this.left    = left;
  this.right   = right;
  this.xoffset = xoffset;
  this.yoffset   = yoffset;
  this.depth = depth;
}