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