Landscape constructor

Landscape({
  1. required String name,
  2. required String location,
  3. required String weather,
  4. required LandscapeType landscapeType,
  5. required List<String> features,
  6. required List<String> resources,
  7. required List<String> encounters,
  8. required String knownFor,
  9. required String size,
  10. required String travelRate,
})

Implementation

Landscape({
  required this.name,
  required this.location,
  required this.weather,
  required this.landscapeType,
  required this.features,
  required this.resources,
  required this.encounters,
  required this.knownFor,
  required this.size,
  required this.travelRate,
});