AppBorderButton constructor

const AppBorderButton({
  1. Key? key,
  2. String? title,
  3. Color? backgroundColor,
  4. Color? borderColor,
  5. Color? textColor,
  6. double? fontSize,
  7. FontWeight? fontWeight,
  8. double? height,
  9. double? width,
  10. BorderRadius? borderRadius,
  11. VoidCallback? onTap,
})

Implementation

const AppBorderButton({
  super.key,
  this.title,
  this.backgroundColor,
  this.borderColor,
  this.textColor,
  this.fontSize,
  this.fontWeight,
  this.height,
  this.width,
  this.borderRadius,
  this.onTap,
});