SavedToursModel constructor

SavedToursModel({
  1. required String query,
  2. required List<PlacesModel> places,
  3. String country = '',
  4. String city = '',
  5. required bool isGenerated,
})

Implementation

SavedToursModel({
  required this.query,
  required this.places,
  this.country = '',
  this.city = '',
  required this.isGenerated,
});