PackageInfoData constructor

PackageInfoData({
  1. required String appName,
  2. required String packageName,
  3. required String version,
  4. required String buildNumber,
  5. required String buildSignature,
  6. String? installerStore,
})

Constructs an instance with the given values for testing. PackageInfoData instances constructed this way won't actually reflect any real information from the platform, just whatever was passed in at construction time.

Implementation

PackageInfoData({
  required this.appName,
  required this.packageName,
  required this.version,
  required this.buildNumber,
  required this.buildSignature,
  this.installerStore,
});