DictionaryPath.from constructor

DictionaryPath.from({
  1. required String word,
  2. required String url,
})

Returns the new instance of DictionaryPath based on arguments.

Implementation

DictionaryPath.from({
  required this.word,
  required this.url,
});