Converter<S, dynamic> fuse(Converter<T, dynamic> other)

Fuses this instance with the given other converter.

If other is a ChunkedConverter (with matching generic types), returns a ChunkedConverter.

Source

Converter<S, dynamic> fuse(Converter<T, dynamic> other) {
  if (other is ChunkedConverter<T, dynamic, T2, dynamic>) {
    return new _FusedChunkedConverter<S, T, dynamic, S2, T2, dynamic>(
        this, other);
  }
  return super.fuse(other);
}