BaseOutlineButton constructor

const BaseOutlineButton({
  1. Key? key,
  2. double width = double.infinity,
  3. double height = 44,
  4. EdgeInsetsGeometry? padding,
  5. Color? backgroundColor,
  6. Widget? icon,
  7. Widget? title,
  8. double borderWidth = 1,
  9. double borderRadius = 22,
  10. Color? borderColor,
  11. List<BoxShadow>? boxShadow,
  12. required VoidCallback? onPressed,
})

Implementation

const BaseOutlineButton(
    {Key? key,
    this.width = double.infinity,
    this.height = 44,
    this.padding,
    this.backgroundColor,
    this.icon,
    this.title,
    this.borderWidth = 1,
    this.borderRadius = 22,
    this.borderColor,
    this.boxShadow,
    required this.onPressed})
    : super(key: key);