Finalizer<S, T> typedef

Finalizer<S, T> = void Function(S, T)

A Finalizer is executed given the mapped source and target and is used to perform any logic not expressible with the mapper. S the source type T the target type

Implementation

typedef Finalizer<S, T> = void Function(S,T);