AppModel constructor
AppModel({
- required String documentID,
- required String ownerID,
- String? title,
- String? homeURL,
- String? email,
- String? description,
- AppStatus? appStatus,
- PublicMediumModel? anonymousProfilePhoto,
- AppHomePageReferencesModel? homePages,
- PublicMediumModel? logo,
- String? styleFamily,
- String? styleName,
- bool? autoPrivileged1,
- bool? isFeatured,
- bool? includeShippingAddress,
- bool? includeInvoiceAddress,
- bool? includeSubscriptions,
- 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,
});