arrayBufferToBase64 function

String arrayBufferToBase64(
  1. Uint8List buffer
)

Convierte bytes a Base64.

Implementation

String arrayBufferToBase64(Uint8List buffer) => base64Encode(buffer);