getAppSourceUrl static method
Implementation
static String getAppSourceUrl(AppInUse appInUse) {
String sourceUrl = '';
final names = appProperties['appSourceUrls'];
if (names is Map) {
sourceUrl = names[appInUse.name]?.toString() ?? '';
}
return sourceUrl;
}