LatestVersionResponse constructor

LatestVersionResponse({
  1. required String? status,
  2. required ValidationReport? validationReport,
  3. required Stats? stats,
  4. required BundleReport? bundleReport,
})

Implementation

LatestVersionResponse({
  required this.status,
  required this.validationReport,
  required this.stats,
  required this.bundleReport,
});