Radio constructor

const Radio({
  1. Key? key,
  2. required bool value,
  3. bool focusing = false,
})

Implementation

const Radio({
  super.key,
  required this.value,
  this.focusing = false,
});