thumbnail property

String? get thumbnail

Thumbnail image as a data URI in either PNG, JPEG or WEBP format, at most 32 KB in size. Optional, but can be provided only when explicitly requested by the onGetMetadataRequested event.

Implementation

String? get thumbnail => _wrapped.thumbnail;
set thumbnail (String? v)

Implementation

set thumbnail(String? v) {
  _wrapped.thumbnail = v;
}