Snapshot constructor

Snapshot({
  1. String? directoryId,
  2. String? name,
  3. String? snapshotId,
  4. DateTime? startTime,
  5. SnapshotStatus? status,
  6. SnapshotType? type,
})

Implementation

Snapshot({
  this.directoryId,
  this.name,
  this.snapshotId,
  this.startTime,
  this.status,
  this.type,
});