google static method

Widget google({
  1. required VoidCallback onPressed,
  2. String text = 'Continue with Google',
  3. LoginButtonStyle style = LoginButtonStyle.white,
  4. 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,
  );
}