fromJson static method
Inherited by: StickerTypeCustomEmoji StickerTypeMask StickerTypeRegular
Implementation
static StickerTypeCustomEmoji? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const StickerTypeCustomEmoji();
}