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