Base64Encoderfinal

Base64 和 base64url 编码转换器。

使用 base64 或 base64url 编码对字节数组进行编码。

结果是使用受限制字母表的 ASCII 字符串。

示例

final base64Encoder = base64.encoder;
const sample = 'Dart is open source';
final encodedSample = base64Encoder.convert(sample.codeUnits);
print(encodedSample); // RGFydCBpcyBvcGVuIHNvdXJjZQ==
继承

构造函数

Base64Encoder()
const
Base64Encoder.urlSafe()
const

属性

hashCode int
此对象的哈希码。
no setterinherited
runtimeType Type
对象的运行时类型的表示。
no setterinherited

方法

bind(Stream<List<int>> stream) Stream<String>
转换提供的 stream
inherited
cast<RS, RT>() Converter<RS, RT>
提供此流转换器的 Converter<RS, RT> 视图。
inherited
convert(List<int> input) String
转换 input 并返回转换结果。
override
fuse<TT>(Converter<String, TT> other) Converter<List<int>, TT>
合并 thisother
inherited
noSuchMethod(Invocation invocation) → dynamic
访问不存在的方法或属性时调用。
inherited
startChunkedConversion(Sink<String> sink) ByteConversionSink
开始分块转换。
override
toString() String
对象的字符串表示。
inherited

运算符

operator ==(Object other) bool
相等运算符。
inherited