EncryptedEpisode constructor

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

Implementation

EncryptedEpisode(
	this.id,
	{
		String? name,
		String? comment,
		int? startDate,
		int? endDate,
		Base64String? encryptedSelf
	}) : name = name ?? null,
	comment = comment ?? null,
	startDate = startDate ?? null,
	endDate = endDate ?? null,
	encryptedSelf = encryptedSelf ?? null;