InputRadio constructor

const InputRadio({
  1. bool? checked,
  2. bool? required,
  3. String? name,
  4. bool? disabled,
  5. String? form,
  6. String? inputMode,
  7. int? tabIndex,
  8. String? value,
  9. Key? key,
  10. NullableElementCallback? ref,
  11. String? id,
  12. String? title,
  13. String? style,
  14. String? className,
  15. bool? hidden,
  16. String? innerText,
  17. Widget? child,
  18. List<Widget>? children,
  19. EventCallback? onClick,
  20. EventCallback? onChange,
  21. Map<String, String>? additionalAttributes,
})

Implementation

const InputRadio({
  bool? checked,
  bool? required,
  String? name,
  bool? disabled,
  String? form,
  String? inputMode,
  int? tabIndex,
  String? value,
  Key? key,
  NullableElementCallback? ref,
  String? id,
  String? title,
  String? style,
  String? className,
  bool? hidden,
  String? innerText,
  Widget? child,
  List<Widget>? children,
  EventCallback? onClick,
  EventCallback? onChange,
  Map<String, String>? additionalAttributes,
}) : super(
        checked: checked,
        required: required,
        name: name,
        form: form,
        value: value,
        tabIndex: tabIndex,
        disabled: disabled,
        inputMode: inputMode,
        type: InputType.radio,
        key: key,
        ref: ref,
        id: id,
        title: title,
        style: style,
        className: className,
        hidden: hidden,
        innerText: innerText,
        child: child,
        children: children,
        onClick: onClick,
        onChange: onChange,
        additionalAttributes: additionalAttributes,
      );