FeedSecondaryButton constructor

const FeedSecondaryButton({
  1. Key? buttonKey,
  2. required VoidCallback onPressed,
  3. required String text,
  4. Color? buttonColor,
  5. Color? textColor,
  6. Widget? customChild,
  7. double? customRadius,
  8. EdgeInsets? customPadding,
  9. Color? borderColor,
  10. bool? addBorder = false,
  11. double? customElevation,
})

Implementation

const FeedSecondaryButton(
    {this.buttonKey,
    required this.onPressed,
    required this.text,
    this.buttonColor,
    this.textColor,
    this.customChild,
    this.customRadius,
    this.customPadding,
    this.borderColor,
    this.addBorder = false,
    this.customElevation});