const
ChipGroupStyle.minimize(- {Color? backgroundColorItem = Colors.grey,
- Color? selectedColorItem = Colors.black,
- Color? textColor = Colors.black,
- Color? selectedTextColor = Colors.white,
- IconData? selectedIcon = Icons.done,
- Color? disabledColor = Colors.grey,
- TextStyle? itemTitleStyle}
)
Implementation
const ChipGroupStyle.minimize({
this.backgroundColorItem = Colors.grey,
this.selectedColorItem = Colors.black,
this.textColor = Colors.black,
this.selectedTextColor = Colors.white,
this.selectedIcon = Icons.done,
this.disabledColor = Colors.grey,
TextStyle? itemTitleStyle,
}) : super(
activeColor: selectedColorItem,
groupTitleStyle: null,
itemTitleStyle: itemTitleStyle,
subItemTitleStyle: null,
);