base64Encode 函数

String base64Encode(
  1. List<int> bytes
)

使用 base64 编码对 bytes 进行编码。

base64.encode(bytes) 的简写。如果局部变量遮蔽了全局的 base64 常量时非常有用。

实现

String base64Encode(List<int> bytes) => base64.encode(bytes);