Context.fromJson constructor

Context.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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