Fuses this instance with the given other
converter.
If other
is a ChunkedConverter (with matching generic types), returns a
ChunkedConverter
.
Source
Converter<Object, dynamic> fuse(Converter<List<int>, dynamic> other) {
return super.fuse(other);
}