This is more an Azure B2C question than a flutter/android question:
TLDR: How can I get a B2C JWT token 'eyJhbGciO...' with a Google access token 'ya29.Glss...'?
We are building an app with flutter that uses Azure B2C to manage the users. While this works fine with simple_auth, we are not huge fans of the whole 'browser popup navigation'/chrome custom tab and we would love to use the native google sign in plugin that shows the local google accounts and allows us to get an access and id token from google (the tokens start with 'ya29.Glss...'. But what are we supposed to do with these two tokens afterwards? I assume I'll have to post it to some custom policy/endpoint somewhere on B2C to receive a B2C token (starting with 'eyJhbGciO...') or do I need to request the token from google with some other parameters?
Any help would be appreciated. Cheers