AppleSignInButton constructor
const
AppleSignInButton({
- VoidCallback? onPressed,
- ButtonType? type = ButtonType.defaultButton,
- ButtonStyleApple? style = ButtonStyleApple.white,
- double? cornerRadius = 6,
Implementation
const AppleSignInButton({
this.onPressed,
this.type = ButtonType.defaultButton,
this.style = ButtonStyleApple.white,
this.cornerRadius = 6,
}) : assert(type != null),
assert(style != null),
assert(cornerRadius != null);