MyStoreInfo constructor

MyStoreInfo({
  1. required String playStoreTitle,
  2. required String playStoreShortDescription,
  3. required String playStoreFullDescription,
  4. required String playStoreStartLanguage,
  5. required bool translatePlayStoreName,
  6. required String appStoreTitle,
  7. required String appStoreSubTitle,
  8. required String appStringDescription,
  9. required String appStoreKeywords,
  10. required String appStoreStartLanguage,
  11. required bool translateAppStoreName,
  12. required bool onlyFirstCharacterUpperAppName,
  13. required String releaseNote,
  14. required String screenshotTitle01,
  15. required String screenshotTitle02,
  16. required String screenshotTitle03,
  17. required String screenshotTitle04,
  18. required String screenshotTitle05,
  19. required String screenshotSubTitle01,
  20. required String screenshotSubTitle02,
  21. required String screenshotSubTitle03,
  22. required String screenshotSubTitle04,
  23. required String screenshotSubTitle05,
  24. required String screenshotStartLanguageCode,
  25. required String homepageLink,
  26. required String policyPageLink,
})

Implementation

MyStoreInfo({
  required this.playStoreTitle, //30자
  required this.playStoreShortDescription, //80자
  required this.playStoreFullDescription, //4000자

  required this.playStoreStartLanguage,
  required this.translatePlayStoreName,

  required this.appStoreTitle, //30자
  required this.appStoreSubTitle, //30자
  required this.appStringDescription, //4000자

  required this.appStoreKeywords, //100자

  required this.appStoreStartLanguage,
  required this.translateAppStoreName,
  required this.onlyFirstCharacterUpperAppName,

  required this.releaseNote,

  required this.screenshotTitle01,
  required this.screenshotTitle02,
  required this.screenshotTitle03,
  required this.screenshotTitle04,
  required this.screenshotTitle05,

  required this.screenshotSubTitle01,
  required this.screenshotSubTitle02,
  required this.screenshotSubTitle03,
  required this.screenshotSubTitle04,
  required this.screenshotSubTitle05,

  required this.screenshotStartLanguageCode,

  required this.homepageLink, // 홈페이지 주소
  required this.policyPageLink, // 개인정보 처리방침 주소


});