DrawerEntity constructor

DrawerEntity({
  1. required String? appId,
  2. String? name,
  3. BackgroundEntity? backgroundOverride,
  4. String? headerText,
  5. String? secondHeaderText,
  6. double? headerHeight,
  7. RgbEntity? popupMenuBackgroundColor,
  8. BackgroundEntity? headerBackgroundOverride,
  9. RgbEntity? popupMenuBackgroundColorOverride,
  10. String? menuId,
})

Implementation

DrawerEntity({
  required this.appId,
  this.name,
  this.backgroundOverride,
  this.headerText,
  this.secondHeaderText,
  this.headerHeight,
  this.popupMenuBackgroundColor,
  this.headerBackgroundOverride,
  this.popupMenuBackgroundColorOverride,
  this.menuId,
});