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