XRadioWithTip<T> constructor

const XRadioWithTip<T>({
  1. Key? key,
  2. required T value,
  3. String tip = '',
  4. required T groupValue,
  5. required ValueChanged<T> onChanged,
  6. double? height,
  7. MainAxisAlignment? mainAxisAlignment,
})

Implementation

const XRadioWithTip({
  Key? key,
  required this.value,
  this.tip = '',
  required this.groupValue,
  required this.onChanged,
  this.height,
  this.mainAxisAlignment,
}) : super(key: key);