ZeroChipOutlined constructor

const ZeroChipOutlined({
  1. Key? key,
  2. Widget? avatar,
  3. required String label,
  4. IconData? cancelIcon,
  5. bool disabled = false,
  6. VoidCallback? onTap,
  7. VoidCallback? onTapCancel,
  8. ZeroChipSize size = ZeroChipSize.small,
  9. ZeroChipOutlinedStyle? style,
})

Implementation

const ZeroChipOutlined({
  Key? key,
  this.avatar,
  required this.label,
  this.cancelIcon,
  this.disabled = false,
  this.onTap,
  this.onTapCancel,
  this.size = ZeroChipSize.small,
  this.style,
}) : super(key: key);