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