Dart package to communicate with the POEditor API
Manage your POEditor projects, translations, and terms via it's API from dart.
To install the package check the install guide
Check the examples in the /example
folder.
import 'package:dart_poeditor/dart_poeditor.dart';
final editor = POEditorAPI(apiToken: env['API_TOKEN'] as String);
editor.projects
.exportJson(projectId: int.parse(env['PROJECT_ID'] ?? '0'), language: 'es')
.then((value) => print(value));