uriForPhraseScrape function

Uri uriForPhraseScrape(
  1. String searchTerm
)

Provides the URI for a phrase scrape

Implementation

Uri uriForPhraseScrape(String searchTerm) {
  return Uri.parse('https://jisho.org/word/${Uri.encodeComponent(searchTerm)}');
}