RecommendationContainer constructor

const RecommendationContainer({
  1. Key? key,
  2. required String imagePath,
  3. required String title,
  4. String? country,
  5. String? city,
  6. required String query,
  7. String? description,
  8. required double width,
  9. required double height,
  10. required double txtSize,
  11. double? descriptionSize,
  12. String? addressQuery = '',
  13. bool isFromWorldwide = true,
  14. required double bottomOpacity,
})

Implementation

const RecommendationContainer(
    {super.key,
    required this.imagePath,
    required this.title,
    this.country,
    this.city,
    required this.query,
    this.description,
    required this.width,
    required this.height,
    required this.txtSize,
    this.descriptionSize,
    this.addressQuery = '',
    this.isFromWorldwide = true,
    required this.bottomOpacity});