PinwheelLink constructor

const PinwheelLink({
  1. Key? key,
  2. required String token,
  3. PinwheelExitCallback? onExit,
  4. PinwheelErrorCallback? onError,
  5. PinwheelEventCallback? onEvent,
  6. PinwheelSuccessCallback? onSuccess,
  7. PinwheelLoginCallback? onLogin,
  8. PinwheelLoginAttemptCallback? onLoginAttempt,
})

Implementation

const PinwheelLink ({
  Key? key,
  required this.token,
  this.onExit,
  this.onError,
  this.onEvent,
  this.onSuccess,
  this.onLogin,
  this.onLoginAttempt
}): super(key: key);