encodeBase64 static method

String encodeBase64(
  1. Uint8List bytes
)

Implementation

static String encodeBase64(Uint8List bytes) {
  return base64.encode(bytes);
}