google static method
Widget
google({
- required VoidCallback onPressed,
- String text = 'Continue with Google',
- LoginButtonStyle style = LoginButtonStyle.white,
- bool isLoading = false,
Implementation
static Widget google({
required VoidCallback onPressed,
String text = 'Continue with Google',
LoginButtonStyle style = LoginButtonStyle.white,
bool isLoading = false,
}) {
return LoginButton(
imagePath: 'assets/images/google.png',
text: text,
onPressed: onPressed,
style: style,
isLoading: isLoading,
);
}