PageEntity constructor

PageEntity({
  1. required String? appId,
  2. String? description,
  3. String? title,
  4. String? appBarId,
  5. String? drawerId,
  6. String? endDrawerId,
  7. String? homeMenuId,
  8. List<BodyComponentEntity>? bodyComponents,
  9. BackgroundEntity? backgroundOverride,
  10. int? layout,
  11. String? gridViewId,
  12. StorageConditionsEntity? conditions,
})

Implementation

PageEntity({
  required this.appId,
  this.description,
  this.title,
  this.appBarId,
  this.drawerId,
  this.endDrawerId,
  this.homeMenuId,
  this.bodyComponents,
  this.backgroundOverride,
  this.layout,
  this.gridViewId,
  this.conditions,
});