setVideo method
Implementation
MessageEmbedBuilder setVideo(
{required String url, String? proxyUrl, int? height, int? width}) {
image = MessageEmbedImage(
url: url, proxyUrl: proxyUrl, height: height, width: width);
return this;
}
MessageEmbedBuilder setVideo(
{required String url, String? proxyUrl, int? height, int? width}) {
image = MessageEmbedImage(
url: url, proxyUrl: proxyUrl, height: height, width: width);
return this;
}