ButtonSearchRF constructor

ButtonSearchRF({
  1. Key? key,
  2. required List<ChipRF> Chips,
  3. required MapControllerRF controller,
  4. int selectedIndex = 0,
  5. double? elevation,
  6. Color? shadowColor,
  7. bool autofocus = false,
  8. BoxConstraints? avatarBoxConstraints,
  9. BoxConstraints? deleteIconBoxConstraints,
  10. Clip clipBehavior = Clip.none,
  11. String? deleteButtonTooltipMessage,
  12. Widget? deleteIcon,
  13. FocusNode? focusNode,
  14. EdgeInsetsGeometry? labelPadding,
  15. TextStyle? labelStyle,
  16. MaterialTapTargetSize? materialTapTargetSize,
  17. VoidCallback? onDeleted,
  18. EdgeInsetsGeometry? padding,
  19. BorderSide? side,
  20. OutlinedBorder? shape,
  21. Color? surfaceTintColor,
  22. VisualDensity? visualDensity,
  23. Color? deleteIconColor,
  24. IconThemeData? iconTheme,
})

Implementation

ButtonSearchRF(
    {super.key,
    required this.Chips,
    required this.controller,
    this.selectedIndex = 0,
    this.elevation,
    this.shadowColor,
    this.autofocus = false,
    this.avatarBoxConstraints,
    this.deleteIconBoxConstraints,
    this.clipBehavior = Clip.none,
    this.deleteButtonTooltipMessage,
    this.deleteIcon,
    this.focusNode,
    this.labelPadding,
    this.labelStyle,
    this.materialTapTargetSize,
    this.onDeleted,
    this.padding,
    this.side,
    this.shape,
    this.surfaceTintColor,
    this.visualDensity,
    this.deleteIconColor,
    this.iconTheme});