AppInstallState constructor

AppInstallState({
  1. required InstallStatus installStatus,
  2. required int bytesDownloaded,
  3. required int totalBytesToDownload,
  4. required int installErrorCode,
})

Implementation

AppInstallState({
  required this.installStatus,
  required this.bytesDownloaded,
  required this.totalBytesToDownload,
  required this.installErrorCode,
});