DictionaryHistoryPage constructor

const DictionaryHistoryPage(
  1. {required dynamic onSearch(
    1. String
    ),
  2. required dynamic onStash(
    1. String
    ),
  3. required dynamic onShare(
    1. String
    ),
  4. Key? key}
)

Create the main body of the HomeDictionaryPage.

Implementation

const DictionaryHistoryPage({
  required this.onSearch,
  required this.onStash,
  required this.onShare,
  super.key,
});