CheckRF constructor

CheckRF({
  1. List<RadioCheckData>? data,
  2. dynamic dimension,
  3. String? field = "",
  4. dynamic value,
  5. bool? scrollable,
  6. double height = 30,
  7. Function? onChange,
  8. bool enabled = true,
  9. bool separator = false,
  10. double paddingTop = 0,
  11. Color? activeColor,
})

Implementation

CheckRF({
  this.data,
  this.dimension,
  this.field = "",
  this.value,
  this.scrollable,
  this.height = 30,
  this.onChange,
  this.enabled = true,
  this.separator = false,
  this.paddingTop = 0,
  this.activeColor,
});