in libraries/Client/Models/VideoCard.cs [30:42]
public VideoCard(string aspect = default(string), string title = default(string), string subtitle = default(string), string text = default(string), ThumbnailUrl image = default(ThumbnailUrl), IList<MediaUrl> media = default(IList<MediaUrl>), IList<CardAction> buttons = default(IList<CardAction>), bool? shareable = default(bool?), bool? autoloop = default(bool?), bool? autostart = default(bool?))
{
Aspect = aspect;
Title = title;
Subtitle = subtitle;
Text = text;
Image = image;
Media = media;
Buttons = buttons;
Shareable = shareable;
Autoloop = autoloop;
Autostart = autostart;
}