SecondaryButton constructor
const
SecondaryButton({
- Key? key,
- VoidCallback? onPressed,
- required String text,
- bool expand = true,
Implementation
const SecondaryButton({
super.key,
this.onPressed,
required this.text,
this.expand = true,
});