CDKButtonSidebar constructor

const CDKButtonSidebar({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. bool isSelected = false,
  4. bool isAccent = true,
  5. required dynamic onSelected(),
  6. 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);