fromJson static method
Deserializes the result from JSON.
Implementation
static GetTextResult fromJson(Map<String, dynamic> json) {
return GetTextResult(json['text'] as String);
}
Deserializes the result from JSON.
static GetTextResult fromJson(Map<String, dynamic> json) {
return GetTextResult(json['text'] as String);
}