getAppsVersion method

AppVersion? getAppsVersion(
  1. String appName
)

Returns the AppVersion of a certain app appName.

Returns null if the app doesn't exist in the map _appVersions.

Implementation

AppVersion? getAppsVersion(String appName) =>
    _appVersions.containsKey(appName) ? _appVersions[appName] : null;