ZwapCheckBoxPickerChipDecoration constructor

const ZwapCheckBoxPickerChipDecoration({
  1. BorderRadius borderRadius = const BorderRadius.all(Radius.circular(100)),
  2. Color backgroundColor = ZwapColors.neutral100,
  3. Border? border,
  4. EdgeInsets padding = const EdgeInsets.symmetric(vertical: 6, horizontal: 12),
  5. bool showRemove = true,
  6. IconData removeIcon = Icons.close,
  7. Color removeIconColor = ZwapColors.text65,
  8. ZwapTextType textType = ZwapTextType.bigBodyMedium,
  9. Color textColor = ZwapColors.primary900Dark,
})

Implementation

const ZwapCheckBoxPickerChipDecoration({
  this.borderRadius = const BorderRadius.all(Radius.circular(100)),
  this.backgroundColor = ZwapColors.neutral100,
  this.border,
  this.padding = const EdgeInsets.symmetric(vertical: 6, horizontal: 12),
  this.showRemove = true,
  this.removeIcon = Icons.close,
  this.removeIconColor = ZwapColors.text65,
  this.textType = ZwapTextType.bigBodyMedium,
  this.textColor = ZwapColors.primary900Dark,
});