SigninButtons constructor

const SigninButtons({
  1. Key? key,
  2. required dynamic onComplete(
    1. bool,
    2. PumaFireUser
    ),
  3. required dynamic onError(
    1. dynamic
    ),
  4. dynamic onStarted()?,
  5. bool googleEnabled = true,
  6. bool appleEnabled = true,
})

Implementation

const SigninButtons({
  Key? key,
  required this.onComplete,
  required this.onError,
  this.onStarted,
  this.googleEnabled = true,
  this.appleEnabled = true,
}) : super(key: key);