PlaceModel constructor

PlaceModel({
  1. required List<Map<String, String>> imagePaths,
  2. required String name,
  3. required String openInfoTime,
  4. required String description,
  5. required String subTitleDescription,
  6. required String location,
  7. required double rating,
  8. required double reviewCount,
  9. required String mapLink,
  10. required String mapImagePath,
})

Implementation

PlaceModel({
  required this.imagePaths,
  required this.name,
  required this.openInfoTime,
  required this.description,
  required this.subTitleDescription,
  required this.location,
  required this.rating,
  required this.reviewCount,
  required this.mapLink,
  required this.mapImagePath,
});