ChipsStyle constructor

const ChipsStyle({
  1. Color backgroundColorItem = Colors.grey,
  2. Color? disabledColor,
  3. Color selectedColorItem = Colors.black,
  4. IconData? selectedIcon,
  5. Color selectedTextColor = Colors.white,
  6. Color textColor = Colors.black,
  7. bool isScrolling = false,
})

Implementation

const ChipsStyle({
  this.backgroundColorItem = Colors.grey,
  this.disabledColor,
  this.selectedColorItem = Colors.black,
  this.selectedIcon,
  this.selectedTextColor = Colors.white,
  this.textColor = Colors.black,
  this.isScrolling = false,
});