fromJson static method
Inherited by: ChatAvailableReactionsAll ChatAvailableReactionsSome
Implementation
static ChatAvailableReactionsAll? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return ChatAvailableReactionsAll(
maxReactionCount: (json['max_reaction_count'] as int?) ?? 0,
);
}