CseIdentity.fromJson constructor

CseIdentity.fromJson(
  1. Map json_
)

Implementation

CseIdentity.fromJson(core.Map json_)
  : this(
      emailAddress: json_['emailAddress'] as core.String?,
      primaryKeyPairId: json_['primaryKeyPairId'] as core.String?,
      signAndEncryptKeyPairs:
          json_.containsKey('signAndEncryptKeyPairs')
              ? SignAndEncryptKeyPairs.fromJson(
                json_['signAndEncryptKeyPairs']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );