ChatPhotoStickerType.fromJson constructor
a ChatPhotoStickerType return type can be :
Implementation
factory ChatPhotoStickerType.fromJson(Map<String, dynamic> json) {
switch (json["@type"]) {
case ChatPhotoStickerTypeRegularOrMask.CONSTRUCTOR:
return ChatPhotoStickerTypeRegularOrMask.fromJson(json);
case ChatPhotoStickerTypeCustomEmoji.CONSTRUCTOR:
return ChatPhotoStickerTypeCustomEmoji.fromJson(json);
default:
return const ChatPhotoStickerType();
}
}