PopulationTypeLocalised.fromJson constructor
Creates an instance of PopulationTypeLocalised from a JSON map.
Implementation
factory PopulationTypeLocalised.fromJson(Map<String, dynamic> json) =>
PopulationTypeLocalised(
name: NameLocalised.fromJson(json['name']),
type: populationTypeValues.map[json['type']]!,
);