certificateChainDerToPemBundle static method
Encodes a list of certificate DER blobs into a single PEM bundle.
Implementation
static String certificateChainDerToPemBundle(List<Uint8List> chainDer) {
return certificateChainDerToPem(chainDer).join('\n');
}