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

9 lines
239 B
Dart

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