PdfString.fromBytes constructor
PdfString.fromBytes(
- Uint8List bytes
Create from raw bytes.
Implementation
factory PdfString.fromBytes(Uint8List bytes) {
return PdfString(String.fromCharCodes(bytes));
}