Skip to content

Instantly share code, notes, and snippets.

@LloydBlv
Created May 13, 2025 08:44
Show Gist options
  • Save LloydBlv/f08c6b606e819360ab9c95889e8e2807 to your computer and use it in GitHub Desktop.
Save LloydBlv/f08c6b606e819360ab9c95889e8e2807 to your computer and use it in GitHub Desktop.
class PushMessageMapper @Inject constructor() {
fun map(message: RemoteMessage): PushMessage {
val data = message.data
return PushMessage(
title = data["title"],
body = data["body"],
deeplink = data["deeplink"],
type = data["type"]
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment