qChatSystemNotificationFromJson function
Implementation
QChatSystemNotification? qChatSystemNotificationFromJson(Map? map) {
if (map != null) {
return QChatSystemNotification.fromJson(map.cast<String, dynamic>());
}
return null;
}
QChatSystemNotification? qChatSystemNotificationFromJson(Map? map) {
if (map != null) {
return QChatSystemNotification.fromJson(map.cast<String, dynamic>());
}
return null;
}