RecursiveDictionaryPage constructor

const RecursiveDictionaryPage(
  1. {required String searchTerm,
  2. required bool killOnPop,
  3. dynamic onUpdateQuery(
    1. String
    )?,
  4. Key? key}
)

Create an instance of this page.

Implementation

const RecursiveDictionaryPage({
  required this.searchTerm,
  required this.killOnPop,
  this.onUpdateQuery,
  super.key,
});