DrawerModel constructor

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

Implementation

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