Input$PointOfSaleInput constructor

Input$PointOfSaleInput({
  1. String? name,
  2. String? title,
  3. String? subtitle,
  4. String? description,
  5. List<String>? tags,
  6. String? brandColor,
  7. String? reference,
  8. bool? published,
  9. bool? aggregator,
  10. Input$PictureInput? picture,
  11. List<Input$PictureInput>? outsidePictures,
  12. List<Input$PictureInput>? insidePictures,
  13. Input$OpeningHoursInput? openingHours,
  14. List<Input$SpecilOfferInput>? specialOffers,
  15. List<Input$FullAddressInput>? locations,
  16. List<String>? email,
  17. List<String>? contactEmails,
  18. List<Input$TargetCurrencyInput>? currencies,
  19. List<String>? languages,
  20. List<String>? phone,
  21. String? website,
  22. List<Input$SocialValueInput>? chatContact,
  23. List<Input$SocialValueInput>? socialMedia,
  24. double? averageCustomers,
  25. String? turnover,
  26. List<String>? posCategory,
  27. String? company,
  28. List<String>? services,
  29. List<String>? paymentMethods,
  30. List<Input$POSLoyaltyInput>? loyaltyPrograms,
})

Implementation

factory Input$PointOfSaleInput({
  String? name,
  String? title,
  String? subtitle,
  String? description,
  List<String>? tags,
  String? brandColor,
  String? reference,
  bool? published,
  bool? aggregator,
  Input$PictureInput? picture,
  List<Input$PictureInput>? outsidePictures,
  List<Input$PictureInput>? insidePictures,
  Input$OpeningHoursInput? openingHours,
  List<Input$SpecilOfferInput>? specialOffers,
  List<Input$FullAddressInput>? locations,
  List<String>? email,
  List<String>? contactEmails,
  List<Input$TargetCurrencyInput>? currencies,
  List<String>? languages,
  List<String>? phone,
  String? website,
  List<Input$SocialValueInput>? chatContact,
  List<Input$SocialValueInput>? socialMedia,
  double? averageCustomers,
  String? turnover,
  List<String>? posCategory,
  String? company,
  List<String>? services,
  List<String>? paymentMethods,
  List<Input$POSLoyaltyInput>? loyaltyPrograms,
}) =>
    Input$PointOfSaleInput._({
      if (name != null) r'name': name,
      if (title != null) r'title': title,
      if (subtitle != null) r'subtitle': subtitle,
      if (description != null) r'description': description,
      if (tags != null) r'tags': tags,
      if (brandColor != null) r'brandColor': brandColor,
      if (reference != null) r'reference': reference,
      if (published != null) r'published': published,
      if (aggregator != null) r'aggregator': aggregator,
      if (picture != null) r'picture': picture,
      if (outsidePictures != null) r'outsidePictures': outsidePictures,
      if (insidePictures != null) r'insidePictures': insidePictures,
      if (openingHours != null) r'openingHours': openingHours,
      if (specialOffers != null) r'specialOffers': specialOffers,
      if (locations != null) r'locations': locations,
      if (email != null) r'email': email,
      if (contactEmails != null) r'contactEmails': contactEmails,
      if (currencies != null) r'currencies': currencies,
      if (languages != null) r'languages': languages,
      if (phone != null) r'phone': phone,
      if (website != null) r'website': website,
      if (chatContact != null) r'chatContact': chatContact,
      if (socialMedia != null) r'socialMedia': socialMedia,
      if (averageCustomers != null) r'averageCustomers': averageCustomers,
      if (turnover != null) r'turnover': turnover,
      if (posCategory != null) r'posCategory': posCategory,
      if (company != null) r'company': company,
      if (services != null) r'services': services,
      if (paymentMethods != null) r'paymentMethods': paymentMethods,
      if (loyaltyPrograms != null) r'loyaltyPrograms': loyaltyPrograms,
    });