ScrollShadowModel constructor

ScrollShadowModel(
  1. WidgetModel parent, {
  2. String? id,
  3. dynamic left,
  4. dynamic right,
  5. dynamic up,
  6. 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;
}