GetTextResult fromJson(Map<String, dynamic> json)

Deserializes the result from JSON.

Source

static GetTextResult fromJson(Map<String, dynamic> json) {
  return new GetTextResult(json['text']);
}