RadioRF constructor

RadioRF({
  1. List<RadioCheckData>? data,
  2. dynamic dimension,
  3. String? field,
  4. bool? scrollable,
  5. double? height,
  6. int? value,
  7. Function? onChange,
  8. bool enabled = true,
  9. bool horizontal = false,
  10. double spaceBetween = 0,
  11. Color? textColor,
})

Implementation

RadioRF({
  this.data,
  this.dimension,
  this.field,
  this.scrollable,
  this.height,
  this.value,
  this.onChange,
  this.enabled = true,
  this.horizontal = false,
  this.spaceBetween = 0,
  this.textColor,
});