UpRadioButton constructor

const UpRadioButton({
  1. Key? key,
  2. UpColorType? colorType,
  3. UpStyle? style,
  4. UpRadioController? controller,
  5. Function? onChange,
  6. UpTextDirection labelDirection = UpTextDirection.left,
  7. dynamic initialValue,
  8. UpDirection direction = UpDirection.horizontal,
  9. required List<UpRadioButtonItem> items,
})

Implementation

const UpRadioButton({
  Key? key,
  this.colorType,
  this.style,
  this.controller,
  this.onChange,
  this.labelDirection = UpTextDirection.left,
  this.initialValue,
  this.direction = UpDirection.horizontal,
  required this.items,
}) : super(key: key);