fromJson static method
Inherited by: DiceStickersRegular DiceStickersSlotMachine
Implementation
static DiceStickersRegular? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return DiceStickersRegular(
sticker: Sticker.fromJson(tdMapFromJson(json['sticker'])),
);
}