Context.fromJson constructor
Implementation
factory Context.fromJson(Map<String, dynamic> json) => Context(
id: json["id"],
mapboxId: json["mapbox_id"] ?? '',
text: json["text"],
wikidata: json["wikidata"],
shortCode: json["short_code"],
);