ProjectSnapshotExtendedResponseModel constructor

const ProjectSnapshotExtendedResponseModel({
  1. required String projectSnapshotId,
  2. required String projectId,
  3. required int createdAtUnix,
  4. required String name,
  5. dynamic audioUpload,
  6. dynamic zipUpload,
  7. required List<CharacterAlignmentModel> characterAlignments,
})

Implementation

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