fuse<T> method

  1. @override
Converter<Object?, T> fuse<T>(
  1. Converter<String, T> other
)
override

Fuses this with other.

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

Implementation

@override
Converter<Object?, T> fuse<T>(Converter<String, T> other) => jsonEncoder.fuse(other);