mirror of
https://github.com/h7x4/unofficial_jisho_api_dart.git
synced 2025-10-22 04:54:08 +02:00
5 lines
134 B
Dart
5 lines
134 B
Dart
import './baseURI.dart';
|
|
|
|
String uriForPhraseSearch(String phrase) {
|
|
return '${JISHO_API}?keyword=${Uri.encodeComponent(phrase)}';
|
|
} |