SignInCallbacks constructor

SignInCallbacks({
  1. void onRequest()?,
  2. void onSuccess(
    1. Session session
    )?,
  3. void onError(
    1. AuthError error
    )?,
})

Creates a new SignInCallbacks instance.

All parameters are optional and can be omitted if not needed.

Implementation

SignInCallbacks({
  this.onRequest,
  this.onSuccess,
  this.onError,
});