unofficial_jisho_api_dart/example/phrase_search_example.dart

9 lines
243 B
Dart
Raw Normal View History

2020-06-23 16:55:39 +02:00
import 'dart:convert';
2020-06-25 22:42:16 +02:00
import 'package:unofficial_jisho_api/api.dart' as jisho;
2020-06-23 16:55:39 +02:00
final encoder = JsonEncoder.withIndent(' ');
void main() async {
2020-06-25 22:42:16 +02:00
await jisho.searchForPhrase('').then((result) {
2020-06-24 17:01:39 +02:00
print(encoder.convert(result));
2020-06-23 16:55:39 +02:00
});
}