MyButton constructor
const
MyButton({
- Key? key,
- required String label,
- VoidCallback? onTap,
- Color? color,
- Color? backgroundColor,
- double? radius,
- BorderRadiusGeometry? borderRadius,
- bool? isLoading,
- bool? disable,
- bool? isOutlineButton,
Implementation
const MyButton({super.key, required this.label, this.onTap, this.color, this.backgroundColor, this.radius, this.borderRadius, this.isLoading, this.disable, this.isOutlineButton});