inlineQueryResultVenue property

InlineQueryResultVenue? inlineQueryResultVenue

Represents information about a venue

Implementation

InlineQueryResultVenue? get inlineQueryResultVenue {
  if (this is InlineQueryResultVenue) {
    return this as InlineQueryResultVenue;
  }
  return null;
}