EncryptedEpisode constructor
EncryptedEpisode(})
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;