fromJson static method
Inherited by: NotificationTypeNewCall NotificationTypeNewMessage NotificationTypeNewPushMessage NotificationTypeNewSecretChat
Implementation
static NotificationTypeNewSecretChat? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const NotificationTypeNewSecretChat();
}