LdRadioWarning constructor
LdRadioWarning({})
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);