AfterGoogleAccountCreatedFunction typedef
AfterGoogleAccountCreatedFunction =
FutureOr<void> Function(Session session, AuthUserModel authUser, GoogleAccount googleAccount, {required Transaction? transaction})
Callback to be invoked after a new Google account has been created and
linked to an auth user. The session and transaction can be used to
perform additional database operations.
Implementation
typedef AfterGoogleAccountCreatedFunction =
FutureOr<void> Function(
Session session,
AuthUserModel authUser,
GoogleAccount googleAccount, {
required Transaction? transaction,
});