ChoiceItem constructor

const ChoiceItem({
  1. required String title,
  2. TextStyle? titleTextStyle,
  3. bool isSelected = false,
  4. Widget? leftIcon,
})

Implementation

const ChoiceItem({required String title, TextStyle? titleTextStyle, this.isSelected = false, this.leftIcon})
    : super(title: title, titleTextStyle: titleTextStyle);