uriForPhraseSearch function

Uri uriForPhraseSearch(
  1. String phrase
)

Provides the URI for a phrase search

Implementation

Uri uriForPhraseSearch(String phrase) {
  return Uri.parse('$jishoApi?keyword=${Uri.encodeComponent(phrase)}');
}