1
0
mirror of https://github.com/h7x4/unofficial_jisho_api_dart.git synced 2025-09-10 04:53:45 +02:00

Add json definition for API result

This commit is contained in:
2020-06-23 16:55:39 +02:00
parent f9b1aaeec3
commit 0f606b7d1b
3 changed files with 77 additions and 22 deletions

View File

@@ -0,0 +1,10 @@
import 'dart:convert';
import 'package:unofficial_jisho_api/unofficial_jisho_api.dart';
final jisho = JishoApi();
final encoder = JsonEncoder.withIndent(' ');
void main() async {
await jisho.searchForPhrase('反対').then((data) {
print(encoder.convert(data));
});
}