PrimaryButton constructor

PrimaryButton({
  1. required void onClick(),
  2. required String title,
  3. IconData? icon,
  4. Color? backgroundColor,
  5. Color? textColor,
  6. EdgeInsets? margin,
})

Implementation

PrimaryButton({
  required this.onClick,
  required this.title,
  this.icon,
  this.backgroundColor,
  this.textColor,
  this.margin,
});