AppleSignInButton constructor

const AppleSignInButton({
  1. Key? key,
  2. required dynamic onCompleted(
    1. bool,
    2. PumaFireUser
    ),
  3. required dynamic onError(
    1. dynamic
    ),
  4. dynamic onStarted()?,
  5. String text = "Sign in with Apple",
})

Implementation

const AppleSignInButton({
  Key? key,
  required this.onCompleted,
  required this.onError,
  this.onStarted,
  this.text = "Sign in with Apple",
}) : super(key: key);