buildInfo property

Map<String, String?> get buildInfo

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 ID
  • iosBundleId - iOS bundle identifier
  • webAppName - Web application name
  • macOSBundleId - macOS bundle identifier
  • windowsPackageName - Windows version information
  • linuxPackageName - Linux project name

Implementation

Map<String, String?> get buildInfo {
  return {
    "androidPackageName": androidPackageName,
    "iosBundleId": iosBundleId,
    "webAppName": webAppName,
    "macOSBundleId": macOSBundleId,
    "windowsPackageName": windowsPackageName,
    "linuxPackageName": linuxPackageName,
  };
}