AppBarModel constructor

AppBarModel({
  1. required String documentID,
  2. required String appId,
  3. String? title,
  4. HeaderSelection? header,
  5. IconModel? icon,
  6. MemberMediumModel? image,
  7. MenuDefModel? iconMenu,
  8. BackgroundModel? backgroundOverride,
  9. RgbModel? iconColorOverride,
  10. RgbModel? selectedIconColorOverride,
  11. RgbModel? menuBackgroundColorOverride,
})

Implementation

AppBarModel({
  required this.documentID,
  required this.appId,
  this.title,
  this.header,
  this.icon,
  this.image,
  this.iconMenu,
  this.backgroundOverride,
  this.iconColorOverride,
  this.selectedIconColorOverride,
  this.menuBackgroundColorOverride,
});