getEntrypointUri function
Implementation
Uri getEntrypointUri(double? contextId) {
WebFController? controller = WebFController.getControllerOfJSContextId(contextId);
String url = controller?.url ?? '';
return Uri.tryParse(url) ?? WebFController.fallbackBundleUri(contextId ?? 0.0);
}