SignAndEncryptKeyPairs.fromJson constructor

SignAndEncryptKeyPairs.fromJson(
  1. Map json_
)

Implementation

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