LdRadioWarning constructor

LdRadioWarning({
  1. String? label,
  2. required bool checked,
  3. LdSize size = LdSize.s,
  4. dynamic onChanged(
    1. bool
    )?,
  5. LdColor? color,
  6. bool disabled = false,
  7. Key? key,
  8. required BuildContext context,
})

Implementation

LdRadioWarning({
  String? label,
  required bool checked,
  LdSize size = LdSize.s,
  dynamic Function(bool)? onChanged,
  LdColor? color,
  bool disabled = false,
  Key? key,
  required BuildContext context,
}) : super(
          label: label,
          checked: checked,
          size: size,
          onChanged: onChanged,
          color: LdTheme.of(context).warning,
          disabled: disabled,
          key: key);