fuse<T> method

Converter<List<int>, T> fuse <T>(
  1. Converter<String, T> next
)
override

Fuses this with other.

Encoding with the resulting converter is equivalent to converting with this before converting with other.

Implementation

external Converter<List<int>, T> fuse<T>(Converter<String, T> next);