SignInButton constructor

SignInButton({
  1. VoidCallback? onPressed,
  2. required String text,
  3. required Widget leading,
  4. bool centerText = false,
  5. ButtonStyle? style,
  6. double? height,
  7. double? width,
  8. Key? key,
})

Implementation

SignInButton({
  this.onPressed,
  required this.text,
  required this.leading,
  this.centerText = false,
  this.style,
  this.height,
  this.width,
  Key? key,
}) : super(key: key);