SignInButton.mini constructor

SignInButton.mini(
  1. Buttons button, {
  2. required VoidCallback onPressed,
  3. EdgeInsets? padding,
  4. ShapeBorder? shape,
  5. String? text,
  6. double? elevation,
  7. double? iconSize,
  8. double? fontSize,
  9. Color? backgroundColor,
  10. Color? textColor,
  11. Color? iconColor,
  12. Color? splashColor,
  13. Color? highlightColor,
  14. double? height,
  15. double? width,
})

Implementation

factory SignInButton.mini(
  Buttons button, {
  required VoidCallback onPressed,
  EdgeInsets? padding,
  ShapeBorder? shape,
  String? text,
  double? elevation,
  double? iconSize,
  double? fontSize,
  Color? backgroundColor,
  Color? textColor,
  Color? iconColor,
  Color? splashColor,
  Color? highlightColor,
  double? height,
  double? width,
}) {
  return SignInButton(
    button,
    onPressed: onPressed,
    backgroundColor: backgroundColor,
    elevation: elevation,
    fontSize: fontSize,
    height: height,
    highlightColor: highlightColor,
    iconColor: iconColor,
    iconSize: iconSize,
    mini: true,
    padding: padding,
    shape: shape,
    splashColor: splashColor,
    text: text,
    textColor: textColor,
    width: width,
  );
}