stickerTypeRegular property

StickerTypeRegular? stickerTypeRegular

The sticker is a regular sticker

Implementation

StickerTypeRegular? get stickerTypeRegular {
  if (this is StickerTypeRegular) {
    return this as StickerTypeRegular;
  }
  return null;
}