BaseBackgroundButton constructor
const
BaseBackgroundButton({
- Key? key,
- double width = double.infinity,
- double height = 44,
- EdgeInsetsGeometry padding = EdgeInsets.zero,
- Widget? icon,
- Widget? title,
- double borderRadius = 22,
- Color? color,
- Color? disableColor,
- required VoidCallback? onPressed,
Implementation
const BaseBackgroundButton(
{Key? key,
this.width = double.infinity,
this.height = 44,
this.padding = EdgeInsets.zero,
this.icon,
this.title,
this.borderRadius = 22,
this.color,
this.disableColor,
required this.onPressed})
: super(key: key);