$radiobutton function

INPUTElement $radiobutton({
  1. Object? id,
  2. Object? name,
  3. Object? classes,
  4. Object? style,
  5. Object? placeholder,
  6. Map<String, String>? attributes,
  7. Object? value,
  8. bool? hidden,
  9. bool disabled = false,
  10. bool commented = false,
})

Creates an input node of type radio.

Implementation

INPUTElement $radiobutton(
    {Object? id,
    Object? name,
    Object? classes,
    Object? style,
    Object? placeholder,
    Map<String, String>? attributes,
    Object? value,
    bool? hidden,
    bool disabled = false,
    bool commented = false}) {
  return INPUTElement(
      id: id,
      name: name,
      type: 'radio',
      placeholder: placeholder,
      classes: classes,
      style: style,
      attributes: attributes,
      value: value,
      hidden: hidden,
      disabled: disabled,
      commented: commented);
}