LoginButton constructor
const
LoginButton({
- Key? key,
- LoginButtonStyle style = LoginButtonStyle.white,
- required String imagePath,
- required String text,
- required VoidCallback onPressed,
- bool isLoading = false,
Implementation
const LoginButton({
super.key,
this.style = LoginButtonStyle.white,
required this.imagePath,
required this.text,
required this.onPressed,
this.isLoading = false,
});