KeyUsageOptions.fromJson constructor

KeyUsageOptions.fromJson(
  1. Map json_
)

Implementation

KeyUsageOptions.fromJson(core.Map json_)
    : this(
        certSign: json_['certSign'] as core.bool?,
        contentCommitment: json_['contentCommitment'] as core.bool?,
        crlSign: json_['crlSign'] as core.bool?,
        dataEncipherment: json_['dataEncipherment'] as core.bool?,
        decipherOnly: json_['decipherOnly'] as core.bool?,
        digitalSignature: json_['digitalSignature'] as core.bool?,
        encipherOnly: json_['encipherOnly'] as core.bool?,
        keyAgreement: json_['keyAgreement'] as core.bool?,
        keyEncipherment: json_['keyEncipherment'] as core.bool?,
      );