KheasydevAppButton constructor

const KheasydevAppButton({
  1. Key? key,
  2. dynamic onTap()?,
  3. required String text,
  4. bool unfillColors = false,
  5. bool disableColors = false,
  6. EdgeInsets? padding,
  7. double? textSize,
  8. Color? primaryColor,
  9. Color? textColor,
})

Implementation

const KheasydevAppButton({
  super.key,
  this.onTap,
  required this.text,
  this.unfillColors = false,
  this.disableColors = false,
  this.padding,
  this.textSize,
  this.primaryColor,
  this.textColor,
});