pdfSizeInBytes property
Tamanho do PDF em bytes (aproximado)
Implementation
int? get pdfSizeInBytes {
if (pdf == null || pdf!.isEmpty) return null;
// Base64 tem aproximadamente 4/3 do tamanho original
return (pdf!.length * 3 / 4).round();
}
Tamanho do PDF em bytes (aproximado)
int? get pdfSizeInBytes {
if (pdf == null || pdf!.isEmpty) return null;
// Base64 tem aproximadamente 4/3 do tamanho original
return (pdf!.length * 3 / 4).round();
}