1
0
mirror of https://github.com/h7x4/unofficial_jisho_api_dart.git synced 2025-11-02 21:36:18 +01:00
Files
unofficial_jisho_api_dart/example/phrase_search_example.dart
2020-06-25 22:42:16 +02:00

9 lines
243 B
Dart

import 'dart:convert';
import 'package:unofficial_jisho_api/api.dart' as jisho;
final encoder = JsonEncoder.withIndent(' ');
void main() async {
await jisho.searchForPhrase('').then((result) {
print(encoder.convert(result));
});
}