PositionedModel constructor
PositionedModel(
- WidgetModel parent,
- String? id, {
- dynamic left,
- dynamic right,
- dynamic top,
- dynamic bottom,
- dynamic xoffset,
- dynamic yoffset,
- dynamic depth,
- 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;
}