PrimaryButton constructor
const
PrimaryButton({
- Key? key,
- double width = 150,
- double height = 80,
- required String text,
- required ButtonType buttonType,
- VoidCallback? onClick,
Implementation
const PrimaryButton({
super.key,
this.width = 150,
this.height = 80,
required this.text,
required this.buttonType,
this.onClick,
});