DialogModel constructor

DialogModel({
  1. required String documentID,
  2. required String appId,
  3. String? title,
  4. String? description,
  5. List<BodyComponentModel>? bodyComponents,
  6. BackgroundModel? backgroundOverride,
  7. DialogLayout? layout,
  8. bool? includeHeading,
  9. GridViewModel? gridView,
  10. StorageConditionsModel? conditions,
})

Implementation

DialogModel({
  required this.documentID,
  required this.appId,
  this.title,
  this.description,
  this.bodyComponents,
  this.backgroundOverride,
  this.layout,
  this.includeHeading,
  this.gridView,
  this.conditions,
});