prepareGenerateScreenshotFrame method

dynamic prepareGenerateScreenshotFrame(
  1. MyScreenshotInfo myScreenshotInfo,
  2. String googleTranslateApiKey
)

Implementation

prepareGenerateScreenshotFrame(
    MyScreenshotInfo myScreenshotInfo, String googleTranslateApiKey) async {
  //keyword.strings (안쓰는것)
  _makeStringFile(
      myScreenshotInfo.screenshotTitle01,
      myScreenshotInfo.screenshotTitle02,
      myScreenshotInfo.screenshotTitle03,
      myScreenshotInfo.screenshotTitle04,
      myScreenshotInfo.screenshotTitle05,
      fromLang: myScreenshotInfo.screenshotStartLanguageCode,
      fileName: 'keyword.strings',
      googleTranslateApiKey);

  //title.strings (현재사용중)
  _makeStringFile(
      myScreenshotInfo.screenshotSubTitle01,
      myScreenshotInfo.screenshotSubTitle02,
      myScreenshotInfo.screenshotSubTitle03,
      myScreenshotInfo.screenshotSubTitle04,
      myScreenshotInfo.screenshotSubTitle05,
      fromLang: myScreenshotInfo.screenshotStartLanguageCode,
      fileName: 'title.strings',
      googleTranslateApiKey);
}