DefaultButton constructor

DefaultButton({
  1. required String title,
  2. required dynamic onTap(),
  3. Color? color,
  4. Color? textColor,
  5. BorderRadius? borderRadius,
  6. EdgeInsets? margin,
  7. Color? borderColor,
  8. double? width,
})

Implementation

DefaultButton({required this.title,required this.onTap,
  this.color,this.textColor,this.borderRadius,this.margin,this.borderColor,this.width});