Base64Decoderfinal

用于解码 base64 编码数据的解码器。

此解码器接受 base64 和 base64url ("url 安全") 编码。

编码需要正确填充。

如果输入不是有效的 base64 数据,则抛出 FormatException

示例

final base64Decoder = base64.decoder;
const base64Bytes = 'RGFydCBpcyBvcGVuIHNvdXJjZQ==';
final decodedBytes = base64Decoder.convert(base64Bytes);
// decodedBytes: [68, 97, 114, 116, 32, 105, 115, 32, 111, 112, 101, 110,
// 32, 115, 111, 117, 114, 99, 101]

// Print as string using UTF-8 decoder
print(utf8.decode(decodedBytes)); // Dart is open source
继承

构造函数

Base64Decoder()
const

属性

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

方法

bind(Stream<String> stream) Stream<List<int>>
转换提供的 stream
inherited
cast<RS, RT>() Converter<RS, RT>
提供此流转换器的 Converter<RS, RT> 视图。
inherited
convert(String input, [int start = 0, int? end]) Uint8List
解码从 startendinput 字符,将其解码为 base64。
override
fuse<TT>(Converter<List<int>, TT> other) Converter<String, TT>
thisother 合并。
inherited
noSuchMethod(Invocation invocation) → dynamic
当访问不存在的方法或属性时调用。
inherited
startChunkedConversion(Sink<List<int>> sink) StringConversionSink
启动分块转换。
override
toString() String
此对象的字符串表示形式。
inherited

操作符

operator ==(Object other) bool
等于操作符。
inherited