SignInButton constructor

SignInButton({
  1. Key? key,
  2. Button button = Button.YoutubeDark,
  3. double borderRadius = 5,
  4. double height = 40,
  5. double iconSize = 24,
  6. bool mini = false,
  7. bool small = false,
  8. bool showText = true,
  9. dynamic onPressed()?,
  10. Color splashColor = Colors.white30,
  11. String? text = '',
  12. double textSize = 15,
  13. double width = double.infinity,
  14. bool spanish = false,
})

Implementation

SignInButton({
  Key? key,
  this.button = Button.YoutubeDark,
  this.borderRadius = 5,
  this.height = 40,
  this.iconSize = 24,
  this.mini = false,
  this.small = false,
  this.showText = true,
  this.onPressed,
  this.splashColor = Colors.white30,
  this.text = '',
  this.textSize = 15,
  this.width = double.infinity,
  this.spanish = false,
}) : super(key: key);