ScrollShadowModel constructor
ScrollShadowModel(
- WidgetModel parent, {
- String? id,
- dynamic left,
- dynamic right,
- dynamic up,
- dynamic down,
Implementation
ScrollShadowModel(WidgetModel parent,
{String? id, dynamic left, dynamic right, dynamic up, dynamic down})
: super(parent, id) {
this.left = left;
this.right = right;
this.up = up;
this.down = down;
}