AppBarEntity constructor

AppBarEntity({
  1. required String? appId,
  2. String? title,
  3. int? header,
  4. IconEntity? icon,
  5. String? imageId,
  6. String? iconMenuId,
  7. BackgroundEntity? backgroundOverride,
  8. RgbEntity? iconColorOverride,
  9. RgbEntity? selectedIconColorOverride,
  10. RgbEntity? menuBackgroundColorOverride,
})

Implementation

AppBarEntity({
  required this.appId,
  this.title,
  this.header,
  this.icon,
  this.imageId,
  this.iconMenuId,
  this.backgroundOverride,
  this.iconColorOverride,
  this.selectedIconColorOverride,
  this.menuBackgroundColorOverride,
});