Radio constructor

const Radio({
  1. required bool selected,
  2. String? label,
  3. String? description,
  4. String size = '20px',
  5. String selectedColor = '#10B981',
  6. bool disabled = false,
})

Implementation

const Radio({
  required this.selected,
  this.label,
  this.description,
  this.size = '20px',
  this.selectedColor = '#10B981',
  this.disabled = false,
});