SnapshotDetails constructor

SnapshotDetails({
  1. required int applicationVersionId,
  2. required String snapshotName,
  3. required SnapshotStatus snapshotStatus,
  4. DateTime? snapshotCreationTimestamp,
})

Implementation

SnapshotDetails({
  required this.applicationVersionId,
  required this.snapshotName,
  required this.snapshotStatus,
  this.snapshotCreationTimestamp,
});