in sdk/communication/AzureCommunicationChat/Source/PushNotification/PushNotificationEvent.swift [37:43]
init(chatEventType: PushNotificationChatEventType, from data: Data) throws {
switch chatEventType {
case .chatMessageReceived:
let event = try PushNotificationChatMessageReceivedEvent(from: data)
self = .chatMessageReceivedEvent(event)
}
}