UpRadioButton constructor

UpRadioButton({
  1. Key? key,
  2. UpColorType? colorType,
  3. UpStyle? style,
  4. Function? onChange,
  5. UpTextDirection labelDirection = UpTextDirection.left,
  6. bool isDisable = false,
  7. required String value,
  8. required List<UpRadioButtonItem> items,
})

Implementation

UpRadioButton({
  Key? key,
  this.colorType,
  this.style,
  this.onChange,
  this.labelDirection = UpTextDirection.left,
  this.isDisable = false,
  required this.value,
  required this.items,
}) : super(key: key);