addCertBytes method

void addCertBytes(
  1. Uint8List bytes
)

Implementation

void addCertBytes(Uint8List bytes) {
  if (bytes.isEmpty) return;
  cert.add(PdfObjectStream(document)..buf.putBytes(bytes));
}