Converter<S, T>  typedef 
 
        Converter<S, T> =
     T Function(S)
     
    
A Converter converts a source type in a target type
S the source type
T the target type
Implementation
typedef Converter<S,T> = T Function(S);