AppEntity constructor

AppEntity({
  1. required String? ownerID,
  2. String? title,
  3. String? homeURL,
  4. String? email,
  5. String? description,
  6. int? appStatus,
  7. String? anonymousProfilePhotoId,
  8. AppHomePageReferencesEntity? homePages,
  9. String? logoId,
  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

AppEntity({
  required this.ownerID,
  this.title,
  this.homeURL,
  this.email,
  this.description,
  this.appStatus,
  this.anonymousProfilePhotoId,
  this.homePages,
  this.logoId,
  this.styleFamily,
  this.styleName,
  this.autoPrivileged1,
  this.isFeatured,
  this.includeShippingAddress,
  this.includeInvoiceAddress,
  this.includeSubscriptions,
  this.welcomeMessage,
});