RadioPreference constructor

RadioPreference(
  1. String title,
  2. dynamic val,
  3. String localGroupKey, {
  4. String? desc,
  5. bool selected = false,
  6. bool ignoreTileTap = false,
  7. bool isDefault = false,
  8. Function? onSelect,
})

Implementation

RadioPreference(
  this.title,
  this.val,
  this.localGroupKey, {
  this.desc,
  this.selected = false,
  this.ignoreTileTap = false,
  this.isDefault = false,
  this.onSelect,
});