SignInButton.mini constructor

SignInButton.mini({
  1. required ButtonType buttonType,
  2. required VoidCallback? onPressed,
  3. ButtonSize buttonSize = ButtonSize.small,
  4. Color? btnColor,
  5. Color? btnDisabledColor,
  6. double elevation = 5.0,
  7. double? padding,
  8. CustomImage? customImage,
})

Implementation

SignInButton.mini({
  required this.buttonType,
  required this.onPressed,
  this.buttonSize = ButtonSize.small,
  this.btnColor,
  this.btnDisabledColor,
  this.elevation = 5.0,
  this.padding,
  this.customImage,
}) : mini = true;