inlineQueryResultPhoto property

InlineQueryResultPhoto? inlineQueryResultPhoto

Represents a photo

Implementation

InlineQueryResultPhoto? get inlineQueryResultPhoto {
  if (this is InlineQueryResultPhoto) {
    return this as InlineQueryResultPhoto;
  }
  return null;
}