Convert<S, T> constructor
const
Convert<S, T> ({})
Implementation
const Convert({Converter<S, T>? convertSource, Converter<T, S>? convertTarget, Type? sourceType, Type? targetType})
: sourceType = sourceType ?? S, targetType = targetType ?? T,
convertSourceFunc = convertSource,
convertTargetFunc = convertTarget;