SignInWithGithub constructor

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

Implementation

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