unofficial_jisho_api_dart/lib/src/phraseSearch.dart

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)}';
}