fromJson static method
Implementation
static EmbedImage fromJson(Map<String, dynamic> json) {
return EmbedImage(
url: json['url'],
proxyUrl: json['proxy_url'],
height: json['height'],
width: json['width'],
);
}
static EmbedImage fromJson(Map<String, dynamic> json) {
return EmbedImage(
url: json['url'],
proxyUrl: json['proxy_url'],
height: json['height'],
width: json['width'],
);
}