getLocalChild method

String? getLocalChild(
  1. String url
)

Implementation

String? getLocalChild(String url) {
  String fileNameForUrl = getLocalFileNameForUrl(url);
  String fileExt = getFileExt(fileNameForUrl);
  String key = fileExt + "ChildDir";
  return hashMap[key];
}