EntityGraphDevtoolsHistoryImportEnvelope constructor

EntityGraphDevtoolsHistoryImportEnvelope({
  1. required String storeId,
  2. required String exportedAt,
  3. required Iterable<EntityGraphDevtoolsHistoryImportSnapshot> snapshots,
})

Implementation

EntityGraphDevtoolsHistoryImportEnvelope({
  required super.storeId,
  required this.exportedAt,
  required Iterable<EntityGraphDevtoolsHistoryImportSnapshot> snapshots,
}) : snapshots = List.unmodifiable(snapshots);