getLoggedInUserId method
Fetches the currently authenticated user ID. Returns null if no user is authenticated.
Implementation
Future<dynamic> getLoggedInUserId() async {
return await auth02.getLoggedInUserId(
auth0Domain: auth0Domain,
auth0ClientId: auth0ClientId,
redirectUri: redirectUri,
);
}