If you are looking for a complete Deep Translator client, refer to deept_client_dio instead.


Deep Translator API interface for Dart

Pub Version

This is a library that defines signatures (interface) to interacting with Deep Translator API. This also defines all required data models. It is written in pure Dart using code-generation.

You are very unlikely to be searching for this library though, this was created to remove the HTTP library dependency from the API interface, it acts like a "platform interface" package.

Notice: This is a unofficial project, maintained by volunteers.

Installation

dependencies:
  deept_client: ^<latest-version>

Import:

import 'package:deept_client/deept_client.dart';

Custom client

class MyCustomDeepTranslatorClient implements DeepTranslatorClient {
  // TODO: Implement/override methods.
}

DeepTranslatorClient is the abstract class that defines all signatures, so you can always extend or implement it.

Now you can do your own implementation and re-use the data models.

This can also be used to mock the DeepTranslatorClient class.

Contributing

Dependencies other than code generation aren't allowed in this package, contributions are allowed only to change, add or remove signatures that corresponds to the Deep Translator API, if you wanna implement something, create a new package that depends on this package instead. We also offer a package that implements this interface using Dio as HTTP client.

Code generation

This package uses code generation to handle data models:

# Get deps.
dart pub get

# Generate code, switch 'watch' for 'build' if you don't wanna watch for file changes.
dart run build_runner watch --delete-conflicting-outputs

It's done, add any model or signature and send PR.

Libraries

deept_client