Converter<Object, dynamic> fuse(Converter<String, dynamic> other)

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<String, dynamic> other) {
  if (other is Utf8Encoder) {
    return new JsonUtf8Encoder(indent, _toEncodable);
  }
  return super.fuse(other);
}