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