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