class ImageAndLocationData{ final String? imagePath; final String? latitude; final String? longitude; final String? locationName; final String? subLocation; ImageAndLocationData({ required this.imagePath, required this.latitude, required this.longitude, required this.locationName, required this.subLocation, }); }