PlaceModel constructor
PlaceModel({ - required List<Map<String, String>> imagePaths,
- required String name,
- required String openInfoTime,
- required String description,
- required String subTitleDescription,
- required String location,
- required double rating,
- required double reviewCount,
- required String mapLink,
- 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,
});