fromJson static method
Parse RecentEmoji from json
Implementation
static RecentSticker fromJson(dynamic json) {
return RecentSticker(
Sticker.fromJson(json['sticker'] as Map<String, dynamic>),
json['counter'] as int,
);
}
Parse RecentEmoji from json
static RecentSticker fromJson(dynamic json) {
return RecentSticker(
Sticker.fromJson(json['sticker'] as Map<String, dynamic>),
json['counter'] as int,
);
}