InstallStateSnapshot constructor

InstallStateSnapshot({
  1. required InAppInstallStatus status,
  2. required int bytesDownloaded,
  3. required int totalBytesToDownload,
  4. required double? fractionDownloaded,
  5. required int installErrorCode,
})

Implementation

InstallStateSnapshot({
  required this.status,
  required this.bytesDownloaded,
  required this.totalBytesToDownload,
  required this.fractionDownloaded,
  required this.installErrorCode,
});