RawButton constructor
const
RawButton({
- Key? key,
- VoidCallback? onPressed,
- ElButtonStyle? style,
- FocusNode? focusNode,
- bool autofocus = false,
- bool disabled = false,
- bool loading = false,
- required dynamic child,
Implementation
const RawButton({
super.key,
this.onPressed,
this.style,
this.focusNode,
this.autofocus = false,
this.disabled = false,
this.loading = false,
required this.child,
});