AppStoreBuildEntry constructor

const AppStoreBuildEntry({
  1. required String buildNumber,
  2. required int? buildNumberAsInt,
  3. required ProcessingState? processingState,
  4. required String? processingStateRaw,
  5. required String? uploadedDate,
  6. required bool expired,
  7. required bool usable,
  8. required bool? needsNewUpload,
  9. required List<BetaGroupEntry>? betaGroups,
  10. required int unresolvedBetaGroups,
  11. required ExternalBuildState? externalBuildState,
  12. required String? externalBuildStateRaw,
  13. required bool? inExternalTesting,
  14. required bool unresolvedBuildBetaDetail,
  15. required List<String> display,
})

Implementation

const AppStoreBuildEntry({
  required this.buildNumber,
  required this.buildNumberAsInt,
  required this.processingState,
  required this.processingStateRaw,
  required this.uploadedDate,
  required this.expired,
  required this.usable,
  required this.needsNewUpload,
  required this.betaGroups,
  required this.unresolvedBetaGroups,
  required this.externalBuildState,
  required this.externalBuildStateRaw,
  required this.inExternalTesting,
  required this.unresolvedBuildBetaDetail,
  required this.display,
});