PickedItemChip constructor
const
PickedItemChip({
- Key? key,
- required String currentItem,
- required VoidCallback onRemove,
- required Color hoveredBackgroundColor,
- required Color textColor,
- required Color hoveredTextColor,
- required double fontSize,
- required Color hoveredRemoveIconColor,
- required Color removedIconColor,
- required double iconSize,
- required EdgeInsets contentPadding,
- required Color backgroundColor,
- required FontWeight fontWeight,
- required FontWeight onHoverFontWeight,
- required double borderRadius,
- BoxDecoration? decoration,
- TextStyle? textStyle,
- Widget? removeIcon,
- MouseCursor? mouseCursor,
Implementation
const PickedItemChip({
Key? key,
required this.currentItem,
required this.onRemove,
required this.hoveredBackgroundColor,
required this.textColor,
required this.hoveredTextColor,
required this.fontSize,
required this.hoveredRemoveIconColor,
required this.removedIconColor,
required this.iconSize,
required this.contentPadding,
required this.backgroundColor,
required this.fontWeight,
required this.onHoverFontWeight,
required this.borderRadius,
this.decoration,
this.textStyle,
this.removeIcon,
this.mouseCursor,
}) : super(key: key);