ComponentSecondFullButton constructor

const ComponentSecondFullButton({
  1. Key? key,
  2. String text = '',
  3. Function? onClick,
  4. ButtonStyle? btnStyle,
  5. TextStyle? textStyle,
  6. EdgeInsets? textPadding,
  7. Color? color,
  8. Color? primaryColor,
})

Implementation

const ComponentSecondFullButton({
  super.key,
  this.text = '',
  this.onClick,
  this.btnStyle,
  this.textStyle,
  this.textPadding,
  this.color,
  this.primaryColor,
});