DrawerModel constructor

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

Implementation

DrawerModel(
  Model super.parent,
  super.id, {
  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,
}) {
  this.rounded = rounded;
  this.handle = handle;
}