CuReToggleButtons constructor

const CuReToggleButtons({
  1. Key? key,
  2. required List<CuReToggleButtonsItem> options,
  3. dynamic onToggle(
    1. CuReToggleButtonsItem
    )?,
  4. CuReShape? shape,
  5. bool? allowJustOne,
  6. double? size,
  7. Color? textColor,
})

Implementation

const CuReToggleButtons({
  super.key,
  required this.options,
  this.onToggle,
  this.shape,
  this.allowJustOne,
  this.size,
  this.textColor,
});