getId method
Retrieves the current user ID.
Returns a Future that completes with the user ID as a String,
or null if no user ID is set.
Implementation
Future<String?> getId() async {
nubrickRuntime.ensureInitialized();
return await NubrickFlutterPlatform.instance.getUserId();
}