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
此对象的哈希码。
无设置器继承
runtimeType Type
对象的运行时类型的表示。
无设置器继承

方法

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

操作符

operator ==(Object other) bool
等号操作符。
继承