Index: lib/src/percent/decoder.dart |
diff --git a/lib/src/percent/decoder.dart b/lib/src/percent/decoder.dart |
index 4d8f9941b2c540e8c0f8b923df10a0bef7c9c1ef..3ff3e016f0ffa2c6a67d6bfe77ee6e6a7f890050 100644 |
--- a/lib/src/percent/decoder.dart |
+++ b/lib/src/percent/decoder.dart |
@@ -25,7 +25,8 @@ const _lastPercent = -1; |
/// |
/// This will throw a [FormatException] if the input string has an incomplete |
/// percent-encoding, or if it contains non-ASCII code units. |
-class PercentDecoder extends Converter<String, List<int>> { |
+class PercentDecoder |
+ extends ChunkedConverter<String, List<int>, String, List<int>> { |
const PercentDecoder._(); |
List<int> convert(String string) { |