CupertinoSpellCheckSuggestionsToolbar constructor
- Key? key,
- required TextSelectionToolbarAnchors anchors,
- required List<
ContextMenuButtonItem> buttonItems,
Constructs a CupertinoSpellCheckSuggestionsToolbar.
buttonItems must not contain more than three items.
Implementation
const CupertinoSpellCheckSuggestionsToolbar({
super.key,
required this.anchors,
required this.buttonItems,
}) : assert(buttonItems.length <= _kMaxSuggestions);