KeyPairUpdateNotification.fromJSON constructor
Implementation
factory KeyPairUpdateNotification.fromJSON(Map<String, dynamic> data) {
return KeyPairUpdateNotification(
(data["newPublicKey"] as SpkiHexString),
(data["concernedDataOwnerId"] as String)
);
}