ProjectSnapshotResponseModel constructor

const ProjectSnapshotResponseModel({
  1. required String projectSnapshotId,
  2. required String projectId,
  3. required int createdAtUnix,
  4. required String name,
  5. dynamic audioUpload,
  6. dynamic zipUpload,
})

Implementation

const ProjectSnapshotResponseModel({
  required this.projectSnapshotId,
  required this.projectId,
  required this.createdAtUnix,
  required this.name,
  this.audioUpload,
  this.zipUpload,
});