toJson method
Implementation
@override
Map<String, dynamic> toJson([dynamic extra]) {
return {
"@type": CONSTRUCTOR,
"top_reactions": topReactions.map((i) => i.toJson()).toList(),
"recent_reactions": recentReactions.map((i) => i.toJson()).toList(),
"popular_reactions": popularReactions.map((i) => i.toJson()).toList(),
"allow_custom_emoji": allowCustomEmoji,
};
}