getIosVersion static method

Map<String, String?>? getIosVersion(
  1. String plistFilePath
)

Gets the version name and build number from the iOS plist file. @param {String} plistFilePath The path to the iOS plist file. @returns {{versionName: String, buildNumber: String?}} The version data, or null if not found.

Implementation

static Map<String, String?>? getIosVersion(String plistFilePath) {
  return FileService.getIosVersion(plistFilePath);
}