inlineQueryResultVideo property

InlineQueryResultVideo? inlineQueryResultVideo

Represents a video

Implementation

InlineQueryResultVideo? get inlineQueryResultVideo {
  if (this is InlineQueryResultVideo) {
    return this as InlineQueryResultVideo;
  }
  return null;
}