thumbnailFormatPng property

ThumbnailFormatPng? thumbnailFormatPng

The thumbnail is in PNG format. It will be used only for background patterns

Implementation

ThumbnailFormatPng? get thumbnailFormatPng {
  if (this is ThumbnailFormatPng) {
    return this as ThumbnailFormatPng;
  }
  return null;
}