CDKButtonSidebar constructor
const
CDKButtonSidebar({
- Key? key,
- VoidCallback? onPressed,
- bool isSelected = false,
- bool isAccent = true,
- required dynamic onSelected(),
- required Widget child,
Implementation
const CDKButtonSidebar({
Key? key,
this.onPressed,
this.isSelected = false,
this.isAccent = true,
required this.onSelected,
required this.child,
}) : super(key: key);