thumbnailFormatGif property

ThumbnailFormatGif? thumbnailFormatGif

The thumbnail is in static GIF format. It will be used only for some bot inline query results

Implementation

ThumbnailFormatGif? get thumbnailFormatGif {
  if (this is ThumbnailFormatGif) {
    return this as ThumbnailFormatGif;
  }
  return null;
}