AppModel constructor

AppModel({
  1. required String documentID,
  2. required String ownerID,
  3. String? title,
  4. String? homeURL,
  5. String? email,
  6. String? description,
  7. AppStatus? appStatus,
  8. PublicMediumModel? anonymousProfilePhoto,
  9. AppHomePageReferencesModel? homePages,
  10. String? styleFamily,
  11. String? styleName,
  12. bool? autoPrivileged1,
  13. bool? isFeatured,
  14. bool? includeShippingAddress,
  15. bool? includeInvoiceAddress,
  16. bool? includeSubscriptions,
  17. String? welcomeMessage,
})

Implementation

AppModel({
  required this.documentID,
  required this.ownerID,
  this.title,
  this.homeURL,
  this.email,
  this.description,
  this.appStatus,
  this.anonymousProfilePhoto,
  this.homePages,
  this.logo,
  this.styleFamily,
  this.styleName,
  this.autoPrivileged1,
  this.isFeatured,
  this.includeShippingAddress,
  this.includeInvoiceAddress,
  this.includeSubscriptions,
  this.welcomeMessage,
});