DictionaryEntryPage constructor

const DictionaryEntryPage(
  1. {required DictionaryEntry entry,
  2. required dynamic onSearch(
    1. String
    ),
  3. required dynamic onStash(
    1. String
    ),
  4. required dynamic onShare(
    1. String
    ),
  5. required ExpandableController expandableController,
  6. Key? key}
)

Create the widget for a dictionary entry.

Implementation

const DictionaryEntryPage({
  required this.entry,
  required this.onSearch,
  required this.onStash,
  required this.onShare,
  required this.expandableController,
  super.key,
});