EncryptedEpisode constructor

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

Implementation

const factory EncryptedEpisode({
	required String id,
	@Default(null) String? name,
	@Default(null) String? comment,
	@Default(null) int? startDate,
	@Default(null) int? endDate,
	@Default(null) Base64String? encryptedSelf,
}) = _EncryptedEpisode;