SignUpCallbacks constructor

SignUpCallbacks({
  1. void onRequest()?,
  2. void onSuccess(
    1. User user
    )?,
  3. void onError(
    1. AuthError error
    )?,
})

Creates a new SignUpCallbacks instance.

Implementation

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