resolveSource method

String resolveSource(
  1. String url
)

Implementation

String resolveSource(String url) {
  if (parent != null) {
    var resolvedURL = parent!.resolveSource(url);
    return resolvedURL;
  }

  if (_domGenerator != null) {
    return domGenerator!.resolveSource(url);
  }
  return url;
}