deeptc 0.1.0
deeptc: ^0.1.0 copied to clipboard
The minimum amount of code you need to start translating text with Deep Translator API.
example/deeptc.dart
import 'package:deeptc/deeptc.dart' as deeptc;
Future<void> main(List<String> arguments) async {
// Oi, bem vindo ao clube!
print(await deeptc.translate('Hi, welcome to the club!', to: 'pt'));
}