HubbleRadioBox constructor

const HubbleRadioBox({
  1. Key? key,
  2. required bool isSelected,
  3. required HubbleRadioOption child,
})

Implementation

const HubbleRadioBox(
    {Key? key, required this.isSelected, required this.child})
    : super(key: key);