SignInButton constructor

SignInButton({
  1. required ButtonType buttonType,
  2. required VoidCallback? onPressed,
  3. ImagePosition? imagePosition = ImagePosition.left,
  4. ButtonSize buttonSize = ButtonSize.small,
  5. Color? btnColor,
  6. Color? btnDisabledColor,
  7. Color? btnTextColor,
  8. Color? btnDisabledTextColor,
  9. String? btnText,
  10. double elevation = 5.0,
  11. double? width,
  12. double? padding,
  13. ShapeBorder? shape,
  14. CustomImage? customImage,
})

Implementation

SignInButton({
  required this.buttonType,
  required this.onPressed,
  this.imagePosition = ImagePosition.left,
  this.buttonSize = ButtonSize.small,
  this.btnColor,
  this.btnDisabledColor,
  this.btnTextColor,
  this.btnDisabledTextColor,
  this.btnText,
  this.elevation = 5.0,
  this.width,
  this.padding,
  this.shape,
  this.customImage,
}) : mini = false;