ExampleSentencesDialogPage constructor

const ExampleSentencesDialogPage(
  1. {required List<String> exampleSentences,
  2. required dynamic onSelect(
    1. List<String>
    ),
  3. dynamic onAppend(
    1. List<String>
    )?,
  4. Key? key}
)

Create an instance of this page.

Implementation

const ExampleSentencesDialogPage({
  required this.exampleSentences,
  required this.onSelect,
  this.onAppend,
  super.key,
});