CDKButtonSelect constructor

const CDKButtonSelect({
  1. Key? key,
  2. required int selectedIndex,
  3. required List<String> options,
  4. bool isFlat = false,
  5. bool isTranslucent = false,
  6. dynamic onSelected(
    1. int
    )?,
})

Implementation

const CDKButtonSelect({
  Key? key,
  required this.selectedIndex,
  required this.options,
  this.isFlat = false,
  this.isTranslucent = false,
  this.onSelected,
}) : super(key: key);