PageModel constructor

PageModel({
  1. required String documentID,
  2. required String appId,
  3. String? description,
  4. String? title,
  5. AppBarModel? appBar,
  6. DrawerModel? drawer,
  7. DrawerModel? endDrawer,
  8. HomeMenuModel? homeMenu,
  9. List<BodyComponentModel>? bodyComponents,
  10. BackgroundModel? backgroundOverride,
  11. PageLayout? layout,
  12. GridViewModel? gridView,
  13. StorageConditionsModel? conditions,
})

Implementation

PageModel({
  required this.documentID,
  required this.appId,
  this.description,
  this.title,
  this.appBar,
  this.drawer,
  this.endDrawer,
  this.homeMenu,
  this.bodyComponents,
  this.backgroundOverride,
  this.layout,
  this.gridView,
  this.conditions,
});