RadioButton constructor

RadioButton({
  1. @required Color? color,
  2. bool? radioValue = false,
  3. bool? enabled = false,
  4. dynamic tap()?,
  5. dynamic value,
})

Implementation

RadioButton({
  @required this.color,
  this.radioValue = false,
  this.enabled = false,
  this.tap,
  this.value,
});