1
0
mirror of https://github.com/h7x4/unofficial_jisho_api_dart.git synced 2025-09-21 04:55:56 +02:00

Split into files

This commit is contained in:
2020-06-22 15:18:48 +02:00
parent 39c2eed084
commit 86b8ccfdbb
8 changed files with 488 additions and 779 deletions

View File

@@ -0,0 +1,5 @@
import './baseURI.dart';
String uriForPhraseSearch(String phrase) {
return '${JISHO_API}?keyword=${Uri.encodeComponent(phrase)}';
}