DialogEntity constructor

DialogEntity({
  1. required String? appId,
  2. String? title,
  3. String? description,
  4. List<BodyComponentEntity>? bodyComponents,
  5. BackgroundEntity? backgroundOverride,
  6. int? layout,
  7. bool? includeHeading,
  8. String? gridViewId,
  9. StorageConditionsEntity? conditions,
})

Implementation

DialogEntity({
  required this.appId,
  this.title,
  this.description,
  this.bodyComponents,
  this.backgroundOverride,
  this.layout,
  this.includeHeading,
  this.gridViewId,
  this.conditions,
});