OudsButton constructor
- Key? key,
- String? label,
- String? icon,
- VoidCallback? onPressed,
- Loader? loader,
- bool? isLoading = false,
- required OudsButtonAppearance appearance,
- String? package,
- bool? isFullWidth = false,
Implementation
const OudsButton({
super.key,
this.label,
this.icon,
this.onPressed,
this.loader,
this.isLoading = false,
required this.appearance,
this.package,
this.isFullWidth = false,
}) : _size = OudsButtonSize.defaultSize,
_component = OudsButtonComponent.defaultButton,
_navigationLayout = null,
_semanticsLabel = null;