exportJson method

String exportJson()

Implementation

String exportJson() {
  return const JsonEncoder.withIndent('  ').convert({
    for (final locale in locales)
      locale: Map<String, String>.from(_localeMap(locale)),
  });
}