SignAndEncryptKeyPairs.fromJson constructor
SignAndEncryptKeyPairs.fromJson(
- Map json_
Implementation
SignAndEncryptKeyPairs.fromJson(core.Map json_)
: this(
encryptionKeyPairId: json_.containsKey('encryptionKeyPairId')
? json_['encryptionKeyPairId'] as core.String
: null,
signingKeyPairId: json_.containsKey('signingKeyPairId')
? json_['signingKeyPairId'] as core.String
: null,
);