Radio constructor

Radio({
  1. bool value = false,
  2. void onChanged(
    1. bool
    )?,
  3. String tag = "input",
  4. Map<String, String>? attributes = const {"type" : "radio"},
  5. String? name,
  6. String? id,
  7. Map<String, dynamic>? style,
  8. String? className,
})

Implementation

Radio({
  this.value = false,
  this.onChanged,
  super.tag = "input",
  super.attributes = const {
    "type": "radio",
  },
  this.name,
  super.id,
  super.style,
  super.className,
});