toBundle method

Bundle toBundle()

Implementation

Bundle toBundle() {
  return Bundle(
      projectId: projectId,
      translationVersion: translationVersion,
      appVersion: appVersion,
      languageBundles: translations.entries
          .map((e) => LanguageBundle(locale: e.key, translations: e.value))
          .toList());
}