ExtendedKeyUsageOptions.fromJson constructor

ExtendedKeyUsageOptions.fromJson(
  1. Map json_
)

Implementation

ExtendedKeyUsageOptions.fromJson(core.Map json_)
  : this(
      clientAuth: json_['clientAuth'] as core.bool?,
      codeSigning: json_['codeSigning'] as core.bool?,
      emailProtection: json_['emailProtection'] as core.bool?,
      ocspSigning: json_['ocspSigning'] as core.bool?,
      serverAuth: json_['serverAuth'] as core.bool?,
      timeStamping: json_['timeStamping'] as core.bool?,
    );