CDKButtonRadio constructor

const CDKButtonRadio({
  1. Key? key,
  2. bool isSelected = false,
  3. ValueChanged<bool>? onSelected,
  4. double size = 16.0,
  5. required Widget child,
})

Implementation

const CDKButtonRadio({
  Key? key,
  this.isSelected = false,
  this.onSelected,
  this.size = 16.0,
  required this.child,
}) : super(key: key);