getAppSourceUrl static method

String getAppSourceUrl(
  1. AppInUse appInUse
)

Implementation

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