ChipButton constructor
const
ChipButton({
- Key? key,
- required Widget child,
- VoidCallback? onPressed,
Creates a chip button with the specified child and callback.
Implementation
const ChipButton({
super.key,
required this.child,
this.onPressed,
});