inlineQueryResultLocation property

InlineQueryResultLocation? inlineQueryResultLocation

Represents a point on the map

Implementation

InlineQueryResultLocation? get inlineQueryResultLocation {
  if (this is InlineQueryResultLocation) {
    return this as InlineQueryResultLocation;
  }
  return null;
}