用于解码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
- 此对象的哈希码。无设置器继承
- runtimeType → Type
- 表示对象运行时类型的一个表示。无设置器继承
方法
-
bind(
Stream< String> stream) → Stream<List< int> > - 转换提供的
stream
。继承 -
cast<
RS, RT> () → Converter< RS, RT> - 为此流转换器提供
Converter<RS, RT>
视图。继承 -
convert(
String input, [int start = 0, int? end]) → Uint8List - 将
input
从start
到end
的字符解码为base64。覆盖 -
fuse<
TT> (Converter< List< other) → Converter<int> , TT>String, TT> - 将
this
与other
熔合。继承 -
noSuchMethod(
Invocation invocation) → dynamic - 当访问不存在的方法或属性时调用。继承
-
startChunkedConversion(
Sink< List< sink) → StringConversionSinkint> > - 开始分块转换。覆盖
-
toString(
) → String - 此对象的字符串表示。继承
运算符
-
operator ==(
Object other) → bool - 相等运算符。继承