1
0
mirror of https://github.com/h7x4/unofficial_jisho_api_dart.git synced 2025-09-21 04:55:56 +02:00
Files
unofficial_jisho_api_dart/lib/src/phraseSearch.dart
2020-06-26 18:14:00 +02:00

7 lines
175 B
Dart

import './base_uri.dart';
/// Provides the URI for a phrase search
String uriForPhraseSearch(String phrase) {
return '$JISHO_API?keyword=${Uri.encodeComponent(phrase)}';
}