from<T> function

Converter<T> from<T>(
  1. Converter<T> converter
)

Sytactic sugar for

from(celsius).to(fahrenheit, 100);

Implementation

Converter<T> from<T>(Converter<T> converter) => converter;