TertiaryButton constructor
const
TertiaryButton({
- Key? key,
- bool isLoading = false,
- Icon? icon,
- required String text,
- required VoidCallback onPressedCallback,
- double width = double.infinity,
- double height = 50,
- EdgeInsetsGeometry padding = const EdgeInsets.all(10),
Implementation
const TertiaryButton({
super.key,
this.isLoading = false,
this.icon,
required this.text,
required this.onPressedCallback,
this.width = double.infinity,
this.height = 50,
this.padding = const EdgeInsets.all(10)
});