PKDCertificate constructor

PKDCertificate(
  1. ByteData binaryData,
  2. PKDResourceType resourceType, {
  3. ByteData? privateKey,
})

Implementation

PKDCertificate(
  ByteData binaryData,
  PKDResourceType resourceType, {
  ByteData? privateKey,
}) : _binaryData = binaryData,
     _resourceType = resourceType,
     _privateKey = privateKey;