FMultiSelectTag constructor

const FMultiSelectTag({
  1. required Widget label,
  2. FMultiSelectTagStyle style(
    1. FMultiSelectTagStyle
    )?,
  3. bool autofocus = false,
  4. FocusNode? focusNode,
  5. ValueChanged<bool>? onFocusChange,
  6. ValueChanged<bool>? onHoverChange,
  7. ValueChanged<FWidgetStatesDelta>? onStateChange,
  8. VoidCallback? onPress,
  9. VoidCallback? onLongPress,
  10. VoidCallback? onSecondaryPress,
  11. VoidCallback? onSecondaryLongPress,
  12. Map<ShortcutActivator, Intent>? shortcuts,
  13. Map<Type, Action<Intent>>? actions,
  14. Key? key,
})

Creates a FMultiSelectTag.

Implementation

const FMultiSelectTag({
  required this.label,
  this.style,
  this.autofocus = false,
  this.focusNode,
  this.onFocusChange,
  this.onHoverChange,
  this.onStateChange,
  this.onPress,
  this.onLongPress,
  this.onSecondaryPress,
  this.onSecondaryLongPress,
  this.shortcuts,
  this.actions,
  super.key,
});