SignInWithGoogle constructor

const SignInWithGoogle(
  1. {Key? key,
  2. required Function onPressed,
  3. Color? buttonColor,
  4. Color? fontColor,
  5. String? title,
  6. double? fontSize}
)

Implementation

const SignInWithGoogle(
    {Key? key,
    required this.onPressed,
    this.buttonColor,
    this.fontColor,
    this.title,
    this.fontSize})
    : super(key: key);