EpisodeDto constructor

EpisodeDto({
  1. required String id,
  2. String? name,
  3. String? comment,
  4. int? startDate,
  5. int? endDate,
  6. String? encryptedSelf,
})

Returns a new EpisodeDto instance.

Implementation

EpisodeDto({
  required this.id,
  this.name,
  this.comment,
  this.startDate,
  this.endDate,
  this.encryptedSelf,
});