RadioCards<T> constructor

const RadioCards<T>({
  1. required List<RadioCardItem<T>> items,
  2. T? value,
  3. void onChanged(
    1. T value
    )?,
  4. double gap = 12,
  5. bool wrap = true,
  6. double? cardWidth,
  7. Key? key,
})

Implementation

const RadioCards({
  required this.items,
  this.value,
  this.onChanged,
  this.gap = 12,
  this.wrap = true,
  this.cardWidth,
  super.key,
});