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