EntityGraphDevtoolsHistoryImportInspectionReceipt constructor

EntityGraphDevtoolsHistoryImportInspectionReceipt({
  1. required String candidateId,
  2. required String storeId,
  3. required String inspectedAt,
  4. required int bytes,
  5. required Iterable<EntityGraphDevtoolsHistoryImportSnapshotInspection> snapshots,
})

Implementation

EntityGraphDevtoolsHistoryImportInspectionReceipt({
  required this.candidateId,
  required this.storeId,
  required this.inspectedAt,
  required this.bytes,
  required Iterable<EntityGraphDevtoolsHistoryImportSnapshotInspection>
  snapshots,
}) : snapshots = List.unmodifiable(snapshots);