inlineQueryResultArticle property

InlineQueryResultArticle? inlineQueryResultArticle

Represents a link to an article or web page

Implementation

InlineQueryResultArticle? get inlineQueryResultArticle {
  if (this is InlineQueryResultArticle) {
    return this as InlineQueryResultArticle;
  }
  return null;
}