使用 base64 编码对 bytes 进行编码。
bytes
是 base64.encode(bytes) 的简写。如果局部变量遮蔽了全局的 base64 常量时非常有用。
base64.encode(bytes)
String base64Encode(List<int> bytes) => base64.encode(bytes);