buildInfo property
Gets the current build information as a map.
This getter provides access to all the extracted build information in a convenient map format.
Returns a map with the following keys:
androidPackageName- Android application IDiosBundleId- iOS bundle identifierwebAppName- Web application namemacOSBundleId- macOS bundle identifierwindowsPackageName- Windows version informationlinuxPackageName- Linux project name
Implementation
Map<String, String?> get buildInfo {
return {
"androidPackageName": androidPackageName,
"iosBundleId": iosBundleId,
"webAppName": webAppName,
"macOSBundleId": macOSBundleId,
"windowsPackageName": windowsPackageName,
"linuxPackageName": linuxPackageName,
};
}