Recommendations constructor

Recommendations({
  1. String? recommendationId,
  2. String? recommendationType,
  3. required DescriptionShortLong description,
})

Implementation

Recommendations(
    {String? recommendationId,
    this.recommendationType,
    required this.description})
    : recommendationId = recommendationId ?? GeigerConstant.uuid;