DrawerModel constructor

DrawerModel(
  1. WidgetModel parent,
  2. String? id, {
  3. dynamic side,
  4. dynamic rounded,
  5. dynamic handle,
  6. dynamic handleLeft,
  7. dynamic handleRight,
  8. dynamic handleTop,
  9. dynamic handleBottom,
  10. dynamic sizeLeft,
  11. dynamic sizeRight,
  12. dynamic sizeTop,
  13. dynamic sizeBottom,
  14. dynamic idLeft,
  15. dynamic idRight,
  16. dynamic idTop,
  17. dynamic idBottom,
})

Implementation

DrawerModel(WidgetModel parent, String? id, {
  dynamic side,
  dynamic rounded,
  dynamic handle,
  dynamic handleLeft,
  dynamic handleRight,
  dynamic handleTop,
  dynamic handleBottom,
  dynamic sizeLeft,
  dynamic sizeRight,
  dynamic sizeTop,
  dynamic sizeBottom,
  dynamic idLeft,
  dynamic idRight,
  dynamic idTop,
  dynamic idBottom,
}) : super(parent, id) {
  this.side = side;
  this.rounded = rounded;
  this.handle = handle;
  this.handleLeft = handleLeft;
  this.handleRight = handleRight;
  this.handleTop = handleTop;
  this.handleBottom = handleBottom;
  this.sizeLeft = sizeLeft;
  this.sizeRight = sizeRight;
  this.sizeTop = sizeTop;
  this.sizeBottom = sizeBottom;
  this.idLeft = idLeft;
  this.idRight = idRight;
  this.idTop = idTop;
  this.idBottom = idBottom;
}