processUserCredential method
Implementation
Future<void> processUserCredential(UserCredential credential) async {
Map<String, dynamic> profile = credential.additionalUserInfo?.profile ?? {};
svc<AuthService>().addUsernameHint(ArcaneAuthUserNameHint(
firstName: profile["given_name"], lastName: profile["family_name"]));
}