pdfSizeInBytes property

int? get pdfSizeInBytes

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();
}