getEntrypointUri function

Uri getEntrypointUri(
  1. double? contextId
)

Implementation

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