AgViewAllButton constructor

const AgViewAllButton({
  1. Key? key,
  2. required String title,
  3. required dynamic onTap(),
  4. TextStyle? titleTextStyle,
  5. int textSize = 18,
  6. String? viewAllText,
  7. Widget? titleWidget,
  8. Color? textColor,
  9. EdgeInsets? padding,
  10. bool showViewAll = true,
  11. bool hideViewAllIcon = false,
})

Implementation

const AgViewAllButton({
  Key? key,
  required this.title,
  required this.onTap,
  this.titleTextStyle,
  this.textSize = 18,
  this.viewAllText,
  this.titleWidget,
  this.textColor,
  this.padding,
  this.showViewAll = true,
  this.hideViewAllIcon = false,
}) : super(key: key);