decryptPushNotificationSubject function
Decrypts the subject of a push notification
Implementation
DecryptedSubject decryptPushNotificationSubject(
RSAPrivateKey privateKey,
String subject,
) =>
DecryptedSubject.fromJson(
json.decode(privateKey.decrypt(subject)) as Map<String, dynamic>,
);