PrimaryButton constructor
PrimaryButton({
- required void onClick(),
- required String title,
- IconData? icon,
- Color? backgroundColor,
- Color? textColor,
- EdgeInsets? margin,
Implementation
PrimaryButton({
required this.onClick,
required this.title,
this.icon,
this.backgroundColor,
this.textColor,
this.margin,
});