LocationDescription constructor

LocationDescription(
  1. String name,
  2. List<String> countryCodes,
  3. double latitude,
  4. double longitude,
  5. String comments,
)

Implementation

LocationDescription(
  this.name,
  this.countryCodes,
  this.latitude,
  this.longitude,
  this.comments,
);