RequestResponse constructor

RequestResponse({
  1. required int bytesDownloaded,
  2. required int installErrorCode,
  3. required int installStatus,
  4. required String packageName,
  5. required int totalBytesToDownload,
})

Implementation

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