PKDCertificate.withPrivateKey constructor

PKDCertificate.withPrivateKey(
  1. dynamic binaryData,
  2. PKDResourceType resourceType,
  3. dynamic privateKey
)

Implementation

PKDCertificate.withPrivateKey(
  Uint8List binaryData,
  PKDResourceType resourceType,
  Uint8List privateKey,
) {
  _binaryData = binaryData;
  _resourceType = resourceType;
  _privateKey = privateKey;
}