addCrlBytes method

void addCrlBytes(
  1. Uint8List bytes
)

Implementation

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