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