encodeByteListToBase64 function

String encodeByteListToBase64(
  1. Uint8List bytes
)

Implementation

String encodeByteListToBase64(Uint8List bytes) {
  return base64Encode(bytes);
}