encodeBase64 static method

String encodeBase64(
  1. Uint8List value
)

Encodes bytes as canonical padded RFC 4648 standard Base64.

Implementation

static String encodeBase64(Uint8List value) => base64.encode(value);